summaryrefslogtreecommitdiff
path: root/seal.cpp
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2006-12-18 02:34:33 +0000
committerweidai <weidai11@users.noreply.github.com>2006-12-18 02:34:33 +0000
commit43b41c1042164bc5194f3f61a2ca131ea9014b4a (patch)
tree9732b0bb2e34535743af1bc3680de2ea8d013710 /seal.cpp
parent54a2acd0aab8ab74ae2c9b88805d259398a1b17e (diff)
downloadcryptopp-git-43b41c1042164bc5194f3f61a2ca131ea9014b4a.tar.gz
update version number, port to Sun C++ 5.8
Diffstat (limited to 'seal.cpp')
-rw-r--r--seal.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/seal.cpp b/seal.cpp
index 34d45c8a..f240b50a 100644
--- a/seal.cpp
+++ b/seal.cpp
@@ -2,12 +2,14 @@
// updated to SEAL 3.0 by Leonard Janke
#include "pch.h"
+
+// prevent Sun's CC compiler from including this file automatically
+#if !(defined(__SUNPRO_CC) && defined(CRYPTOPP_ITERHASH_H))
+
#include "seal.h"
#include "sha.h"
#include "misc.h"
-#include "strciphr.cpp"
-
NAMESPACE_BEGIN(CryptoPP)
void SEAL_TestInstantiations()
@@ -209,3 +211,5 @@ template class SEAL_Policy<BigEndian>;
template class SEAL_Policy<LittleEndian>;
NAMESPACE_END
+
+#endif