summaryrefslogtreecommitdiff
path: root/md5.cpp
diff options
context:
space:
mode:
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