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/mdx_hash.h |
Initial checkin1.5.6
Diffstat (limited to 'include/mdx_hash.h')
-rw-r--r-- | include/mdx_hash.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/include/mdx_hash.h b/include/mdx_hash.h new file mode 100644 index 000000000..b7ad8d73a --- /dev/null +++ b/include/mdx_hash.h @@ -0,0 +1,40 @@ +/************************************************* +* MDx Hash Function Header File * +* (C) 1999-2006 The Botan Project * +*************************************************/ + +#ifndef BOTAN_MDX_BASE_H__ +#define BOTAN_MDX_BASE_H__ + +#include <botan/base.h> + +namespace Botan { + +/************************************************* +* MDx Hash Function Base Class * +*************************************************/ +class MDx_HashFunction : public HashFunction + { + public: + MDx_HashFunction(u32bit, u32bit, bool, bool, u32bit = 8); + virtual ~MDx_HashFunction() {} + protected: + void clear() throw(); + SecureVector<byte> buffer; + u64bit count; + u32bit position; + private: + void add_data(const byte[], u32bit); + void final_result(byte output[]); + + virtual void hash(const byte[]) = 0; + virtual void copy_out(byte[]) = 0; + virtual void write_count(byte[]); + + const bool BIG_BYTE_ENDIAN, BIG_BIT_ENDIAN; + const u32bit COUNT_SIZE; + }; + +} + +#endif |