summaryrefslogtreecommitdiff
path: root/md5.cpp
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2007-04-15 22:59:12 +0000
committerweidai <weidai11@users.noreply.github.com>2007-04-15 22:59:12 +0000
commit45fab64526e5cb2e14465693717f78db280d3647 (patch)
tree90265bc8d0eedc1d917c58dc6a126ff3da19d1bc /md5.cpp
parent837bc18cba61043c59a6f46654fba82642592601 (diff)
downloadcryptopp-git-45fab64526e5cb2e14465693717f78db280d3647.tar.gz
move MD2, MD4, MD5, PanamaHash, WAKE_CFB into the namespace 'Weak'
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 cfe81a27..839d0191 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