diff options
Diffstat (limited to 'include/has160.h')
-rw-r--r-- | include/has160.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/include/has160.h b/include/has160.h deleted file mode 100644 index 9e35bfdca..000000000 --- a/include/has160.h +++ /dev/null @@ -1,33 +0,0 @@ -/************************************************* -* 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 |