From 17704afa2bb77b0bbcee2e3df9abfcda662ee64a Mon Sep 17 00:00:00 2001 From: weidai Date: Sun, 15 Apr 2007 22:59:12 +0000 Subject: move MD2, MD4, MD5, PanamaHash, WAKE_CFB into the namespace 'Weak' git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@284 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- md4.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'md4.h') diff --git a/md4.h b/md4.h index bf5399c..d80a3d7 100644 --- a/md4.h +++ b/md4.h @@ -5,6 +5,8 @@ NAMESPACE_BEGIN(CryptoPP) +namespace Weak { + //! MD4 /*! \warning MD4 is considered insecure, and should not be used unless you absolutely need it for compatibility. */ @@ -16,6 +18,16 @@ public: static const char *StaticAlgorithmName() {return "MD4";} }; +} +#ifndef CRYPTOPP_ENABLE_NAMESPACE_WEAK +using namespace Weak; +#ifdef __GNUC__ +#warning "You may be using a weak algorithm that has been retained for backwards compatibility. Please define CRYPTOPP_ENABLE_NAMESPACE_WEAK and prepend the class name with 'Weak::' to remove this warning." +#else +#pragma message("You may be using a weak algorithm that has been retained for backwards compatibility. Please define CRYPTOPP_ENABLE_NAMESPACE_WEAK and prepend the class name with 'Weak::' to remove this warning.") +#endif +#endif + NAMESPACE_END #endif -- cgit v1.2.1