summaryrefslogtreecommitdiff
path: root/md2.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-04-15 22:59:12 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-04-15 22:59:12 +0000
commit17704afa2bb77b0bbcee2e3df9abfcda662ee64a (patch)
tree90265bc8d0eedc1d917c58dc6a126ff3da19d1bc /md2.h
parentc2c447ca532cf9fb959bb2782ef9e07f7483fda4 (diff)
downloadcryptopp-17704afa2bb77b0bbcee2e3df9abfcda662ee64a.tar.gz
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
Diffstat (limited to 'md2.h')
-rw-r--r--md2.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/md2.h b/md2.h
index 01af36d..4e8ac4b 100644
--- a/md2.h
+++ b/md2.h
@@ -6,8 +6,9 @@
NAMESPACE_BEGIN(CryptoPP)
-/// <a href="http://www.weidai.com/scan-mirror/md.html#MD2">MD2</a>
-/** 128 Bit Hash */
+namespace Weak {
+
+/// <a href="http://www.cryptolounge.org/wiki/MD2">MD2</a>
class MD2 : public HashTransformation
{
public:
@@ -28,6 +29,16 @@ private:
unsigned int m_count;
};
+}
+#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