summaryrefslogtreecommitdiff
path: root/sha3.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2013-01-19 02:20:00 +0000
committerweidai <weidai11@users.noreply.github.com>2013-01-19 02:20:00 +0000
commit2fb44ea6db0df2bdc626c3028635ae41a2ef9f62 (patch)
tree0489fdbd8b1c5c6f87537d4136dcf1afeecb0bd8 /sha3.h
parent60a5ab4e66722e3ec2db18bfed836a0f0c718c81 (diff)
downloadcryptopp-git-2fb44ea6db0df2bdc626c3028635ae41a2ef9f62.tar.gz
add SHA-3
update DSA to FIPS 186-3 update version numbers
Diffstat (limited to 'sha3.h')
-rw-r--r--sha3.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/sha3.h b/sha3.h
new file mode 100644
index 00000000..232bae56
--- /dev/null
+++ b/sha3.h
@@ -0,0 +1,65 @@
+// sha3.h - written and placed in the public domain by Wei Dai
+
+#ifndef CRYPTOPP_SHA3_H
+#define CRYPTOPP_SHA3_H
+
+#include "cryptlib.h"
+#include "secblock.h"
+
+NAMESPACE_BEGIN(CryptoPP)
+
+/// <a href="http://en.wikipedia.org/wiki/SHA-3">SHA-3</a>
+class SHA3 : public HashTransformation
+{
+public:
+ SHA3(unsigned int digestSize) : m_digestSize(digestSize) {Restart();}
+ unsigned int DigestSize() const {return m_digestSize;}
+ std::string AlgorithmName() const {return "SHA-3-" + IntToString(m_digestSize*8);}
+ unsigned int OptimalDataAlignment() const {return GetAlignmentOf<word64>();}
+
+ void Update(const byte *input, size_t length);
+ void Restart();
+ void TruncatedFinal(byte *hash, size_t size);
+
+protected:
+ inline unsigned int r() const {return 200 - 2 * m_digestSize;}
+
+ FixedSizeSecBlock<word64, 25> m_state;
+ unsigned int m_digestSize, m_counter;
+};
+
+class SHA3_224 : public SHA3
+{
+public:
+ CRYPTOPP_CONSTANT(DIGESTSIZE = 28)
+ SHA3_224() : SHA3(DIGESTSIZE) {}
+ static const char * StaticAlgorithmName() {return "SHA-3-224";}
+};
+
+class SHA3_256 : public SHA3
+{
+public:
+ CRYPTOPP_CONSTANT(DIGESTSIZE = 32)
+ SHA3_256() : SHA3(DIGESTSIZE) {}
+ static const char * StaticAlgorithmName() {return "SHA-3-256";}
+};
+
+class SHA3_384 : public SHA3
+{
+public:
+ CRYPTOPP_CONSTANT(DIGESTSIZE = 48)
+ SHA3_384() : SHA3(DIGESTSIZE) {}
+ static const char * StaticAlgorithmName() {return "SHA-3-384";}
+};
+
+class SHA3_512 : public SHA3
+{
+public:
+ CRYPTOPP_CONSTANT(DIGESTSIZE = 64)
+ SHA3_512() : SHA3(DIGESTSIZE) {}
+ static const char * StaticAlgorithmName() {return "SHA-3-512";}
+};
+
+NAMESPACE_END
+
+#endif