aboutsummaryrefslogtreecommitdiffstats
path: root/include/md4.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/md4.h')
-rw-r--r--include/md4.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/include/md4.h b/include/md4.h
new file mode 100644
index 000000000..31a934927
--- /dev/null
+++ b/include/md4.h
@@ -0,0 +1,33 @@
+/*************************************************
+* MD4 Header File *
+* (C) 1999-2006 The Botan Project *
+*************************************************/
+
+#ifndef BOTAN_MD4_H__
+#define BOTAN_MD4_H__
+
+#include <botan/mdx_hash.h>
+
+namespace Botan {
+
+/*************************************************
+* MD4 *
+*************************************************/
+class 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