From 2c21d4b01805b01401d6c4fe9dd4a1556a5e6140 Mon Sep 17 00:00:00 2001 From: JinmingHu Date: Mon, 20 Jul 2020 10:35:09 +0800 Subject: [PATCH] Remove MD5 and CRC64 function interface (#324) --- sdk/storage/inc/common/crypt.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/sdk/storage/inc/common/crypt.hpp b/sdk/storage/inc/common/crypt.hpp index c84f1057a..6d6ceb771 100644 --- a/sdk/storage/inc/common/crypt.hpp +++ b/sdk/storage/inc/common/crypt.hpp @@ -10,7 +10,5 @@ namespace Azure { namespace Storage { std::string HMAC_SHA256(const std::string& text, const std::string& key); std::string Base64Encode(const std::string& text); std::string Base64Decode(const std::string& text); - std::string MD5(const std::string& text); - std::string CRC64(const std::string& text); }} // namespace Azure::Storage