diff options
Diffstat (limited to 'src/hash/sha1_sse2/sha1_sse2.h')
-rw-r--r-- | src/hash/sha1_sse2/sha1_sse2.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/hash/sha1_sse2/sha1_sse2.h b/src/hash/sha1_sse2/sha1_sse2.h new file mode 100644 index 000000000..5683acc4f --- /dev/null +++ b/src/hash/sha1_sse2/sha1_sse2.h @@ -0,0 +1,33 @@ +/************************************************* +* SHA-160 Header File * +* (C) 1999-2007 The Botan Project * +*************************************************/ + +#ifndef BOTAN_SHA_160_SSE2_H__ +#define BOTAN_SHA_160_SSE2_H__ + +#include <botan/mdx_hash.h> + +namespace Botan { + +/************************************************* +* SHA-160 * +*************************************************/ +class SHA_160_SSE2 : public MDx_HashFunction + { + public: + void clear() throw(); + std::string name() const { return "SHA-160"; } + HashFunction* clone() const { return new SHA_160_SSE2; } + + SHA_160_SSE2() : MDx_HashFunction(20, 64, true, true) { clear(); } + private: + void hash(const byte[]); + void copy_out(byte[]); + + SecureBuffer<u32bit, 5> digest; + }; + +} + +#endif |