diff options
author | lloyd <[email protected]> | 2006-05-18 18:33:19 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-05-18 18:33:19 +0000 |
commit | a2c99d3270eb73ef2db5704fc54356c6b75096f8 (patch) | |
tree | ad3d6c4fcc8dd0f403f8105598943616246fe172 /include/md2.h |
Initial checkin1.5.6
Diffstat (limited to 'include/md2.h')
-rw-r--r-- | include/md2.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/include/md2.h b/include/md2.h new file mode 100644 index 000000000..80a2b34fa --- /dev/null +++ b/include/md2.h @@ -0,0 +1,35 @@ +/************************************************* +* MD2 Header File * +* (C) 1999-2006 The Botan Project * +*************************************************/ + +#ifndef BOTAN_MD2_H__ +#define BOTAN_MD2_H__ + +#include <botan/mdx_hash.h> + +namespace Botan { + +/************************************************* +* MD2 * +*************************************************/ +class MD2 : public HashFunction + { + public: + void clear() throw(); + std::string name() const { return "MD2"; } + HashFunction* clone() const { return new MD2; } + MD2() : HashFunction(16, 16) { clear(); } + private: + void add_data(const byte[], u32bit); + void hash(const byte[]); + void final_result(byte[]); + + SecureBuffer<byte, 48> X; + SecureBuffer<byte, 16> checksum, buffer; + u32bit position; + }; + +} + +#endif |