summaryrefslogtreecommitdiff
path: root/md5.cpp
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 /md5.cpp
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 'md5.cpp')
-rw-r--r--md5.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/md5.cpp b/md5.cpp
index cfe81a2..839d019 100644
--- a/md5.cpp
+++ b/md5.cpp
@@ -2,10 +2,12 @@
// any modifications are placed in the public domain
#include "pch.h"
+#define CRYPTOPP_ENABLE_NAMESPACE_WEAK
#include "md5.h"
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)
+namespace Weak {
void MD5_TestInstantiations()
{
@@ -112,4 +114,5 @@ void MD5::Transform (word32 *digest, const word32 *in)
digest[3]+=d;
}
+}
NAMESPACE_END