summaryrefslogtreecommitdiff
path: root/rsa.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-07-11 19:16:35 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-07-11 19:16:35 +0000
commitb4a86556710cc5933a2b67458f957eee2056fe18 (patch)
treed2cfba9dfea9a49eebfae99247ae1621c20b8938 /rsa.cpp
parent279d29ae1c0b0080016e77b6ec9618e08eb2effe (diff)
downloadcryptopp-b4a86556710cc5933a2b67458f957eee2056fe18.tar.gz
fix GCC compile
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@92 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'rsa.cpp')
-rw-r--r--rsa.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsa.cpp b/rsa.cpp
index 4ed1ca0..79e49bb 100644
--- a/rsa.cpp
+++ b/rsa.cpp
@@ -10,7 +10,7 @@
#include "algparam.h"
#include "fips140.h"
-#if !defined(NDEBUG) && defined(CRYPTOPP_NO_DLL)
+#if !defined(NDEBUG) && !defined(CRYPTOPP_IS_DLL)
#include "pssr.h"
#endif
@@ -18,7 +18,7 @@ NAMESPACE_BEGIN(CryptoPP)
byte OAEP_P_DEFAULT[1];
-#if !defined(NDEBUG) && defined(CRYPTOPP_NO_DLL)
+#if !defined(NDEBUG) && !defined(CRYPTOPP_IS_DLL)
void RSA_TestInstantiations()
{
RSASS<PKCS1v15, SHA>::Verifier x1(1, 1);