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