summaryrefslogtreecommitdiff
path: root/rsa.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'rsa.cpp')
-rw-r--r--rsa.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/rsa.cpp b/rsa.cpp
index 76d4aa9..4ed1ca0 100644
--- a/rsa.cpp
+++ b/rsa.cpp
@@ -10,15 +10,15 @@
#include "algparam.h"
#include "fips140.h"
-#ifndef NDEBUG
+#if !defined(NDEBUG) && defined(CRYPTOPP_NO_DLL)
#include "pssr.h"
#endif
-#include "oaep.cpp"
-
NAMESPACE_BEGIN(CryptoPP)
-#ifndef NDEBUG
+byte OAEP_P_DEFAULT[1];
+
+#if !defined(NDEBUG) && defined(CRYPTOPP_NO_DLL)
void RSA_TestInstantiations()
{
RSASS<PKCS1v15, SHA>::Verifier x1(1, 1);
@@ -41,7 +41,7 @@ void RSA_TestInstantiations()
}
#endif
-template class OAEP<SHA>;
+#ifndef CRYPTOPP_IMPORTS
OID RSAFunction::GetAlgorithmID() const
{
@@ -278,4 +278,6 @@ void InvertibleRSAFunction::AssignFrom(const NameValuePairs &source)
;
}
+#endif
+
NAMESPACE_END