summaryrefslogtreecommitdiff
path: root/rsa.cpp
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2003-07-11 19:16:35 +0000
committerweidai <weidai11@users.noreply.github.com>2003-07-11 19:16:35 +0000
commit12157494b2f78767cc21860380b3e500fe6dc488 (patch)
treed2cfba9dfea9a49eebfae99247ae1621c20b8938 /rsa.cpp
parenta926c983381960320112cb86fb30e31d38bc07ab (diff)
downloadcryptopp-git-12157494b2f78767cc21860380b3e500fe6dc488.tar.gz
fix GCC compile
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 4ed1ca0f..79e49bbb 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);