From 17704afa2bb77b0bbcee2e3df9abfcda662ee64a Mon Sep 17 00:00:00 2001 From: weidai Date: Sun, 15 Apr 2007 22:59:12 +0000 Subject: 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 --- md5.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'md5.cpp') 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 -- cgit v1.2.1