summaryrefslogtreecommitdiffstats
path: root/botan/build/botan/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'botan/build/botan/md5.h')
-rw-r--r--botan/build/botan/md5.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/botan/build/botan/md5.h b/botan/build/botan/md5.h
new file mode 100644
index 0000000..85f684d
--- /dev/null
+++ b/botan/build/botan/md5.h
@@ -0,0 +1,35 @@
+/**
+* MD5
+* (C) 1999-2008 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#ifndef BOTAN_MD5_H__
+#define BOTAN_MD5_H__
+
+#include <botan/mdx_hash.h>
+
+namespace Botan {
+
+/**
+* MD5
+*/
+class BOTAN_DLL MD5 : public MDx_HashFunction
+ {
+ public:
+ void clear() throw();
+ std::string name() const { return "MD5"; }
+ HashFunction* clone() const { return new MD5; }
+ MD5() : MDx_HashFunction(16, 64, false, true) { clear(); }
+ protected:
+ void compress_n(const byte[], u32bit blocks);
+ void copy_out(byte[]);
+
+ SecureBuffer<u32bit, 16> M;
+ SecureBuffer<u32bit, 4> digest;
+ };
+
+}
+
+#endif