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