summaryrefslogtreecommitdiff
path: root/iterhash.h
diff options
context:
space:
mode:
Diffstat (limited to 'iterhash.h')
-rw-r--r--iterhash.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/iterhash.h b/iterhash.h
index bdfa05ab..1b3e7cb5 100644
--- a/iterhash.h
+++ b/iterhash.h
@@ -1,3 +1,5 @@
+// strciphr.h - originally written and placed in the public domain by Wei Dai
+
#ifndef CRYPTOPP_ITERHASH_H
#define CRYPTOPP_ITERHASH_H
@@ -6,6 +8,14 @@
#include "misc.h"
#include "simple.h"
+#if CRYPTOPP_MSC_VERSION
+# pragma warning(push)
+# pragma warning(disable: 4231 4275)
+# if (CRYPTOPP_MSC_VERSION >= 1400)
+# pragma warning(disable: 6011 6386 28193)
+# endif
+#endif
+
NAMESPACE_BEGIN(CryptoPP)
//! \class HashInputTooLong
@@ -179,4 +189,8 @@ protected:
NAMESPACE_END
+#if CRYPTOPP_MSC_VERSION
+# pragma warning(pop)
+#endif
+
#endif