summaryrefslogtreecommitdiff
path: root/oaep.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'oaep.cpp')
-rw-r--r--oaep.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/oaep.cpp b/oaep.cpp
index ddd846d..fd2d97a 100644
--- a/oaep.cpp
+++ b/oaep.cpp
@@ -1,8 +1,10 @@
// oaep.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
-#include "oaep.h"
+#ifndef CRYPTOPP_IMPORTS
+
+#include "oaep.h"
#include <functional>
NAMESPACE_BEGIN(CryptoPP)
@@ -91,3 +93,5 @@ DecodingResult OAEP_Base::Unpad(const byte *oaepBlock, unsigned int oaepBlockLen
}
NAMESPACE_END
+
+#endif