summaryrefslogtreecommitdiff
path: root/md4.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 /md4.cpp
parent837bc18cba61043c59a6f46654fba82642592601 (diff)
downloadcryptopp-git-45fab64526e5cb2e14465693717f78db280d3647.tar.gz
move MD2, MD4, MD5, PanamaHash, WAKE_CFB into the namespace 'Weak'
Diffstat (limited to 'md4.cpp')
-rw-r--r--md4.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/md4.cpp b/md4.cpp
index c67ef066..f032fc05 100644
--- a/md4.cpp
+++ b/md4.cpp
@@ -15,10 +15,12 @@
*/
#include "pch.h"
+#define CRYPTOPP_ENABLE_NAMESPACE_WEAK
#include "md4.h"
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)
+namespace Weak {
void MD4::InitState(HashWordType *state)
{
@@ -104,4 +106,5 @@ void MD4::Transform (word32 *digest, const word32 *in)
digest[3]+=D;
}
+}
NAMESPACE_END