summaryrefslogtreecommitdiff
path: root/oaep.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-07-18 04:35:30 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-07-18 04:35:30 +0000
commita89df27c0f7ded0a673dc84ce0b0e24c6d05e0d0 (patch)
treea25c153b42dc3f510a7981a031bd04dfa0a7a712 /oaep.cpp
parent656db5504c8c656d3981fed232da44b2f28b1feb (diff)
downloadcryptopp-a89df27c0f7ded0a673dc84ce0b0e24c6d05e0d0.tar.gz
misc changes
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@103 57ff6487-cd31-0410-9ec3-f628ee90f5f0
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