summaryrefslogtreecommitdiffstats
path: root/botan/src/hash/md5_ia32/md5_ia32.h
diff options
context:
space:
mode:
Diffstat (limited to 'botan/src/hash/md5_ia32/md5_ia32.h')
-rw-r--r--botan/src/hash/md5_ia32/md5_ia32.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/botan/src/hash/md5_ia32/md5_ia32.h b/botan/src/hash/md5_ia32/md5_ia32.h
new file mode 100644
index 0000000..723d724
--- /dev/null
+++ b/botan/src/hash/md5_ia32/md5_ia32.h
@@ -0,0 +1,28 @@
+/*
+* MD5 (IA-32)
+* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#ifndef BOTAN_MD5_IA32_H__
+#define BOTAN_MD5_IA32_H__
+
+#include <botan/md5.h>
+
+namespace Botan {
+
+/*
+* MD5
+*/
+class BOTAN_DLL MD5_IA32 : public MD5
+ {
+ public:
+ HashFunction* clone() const { return new MD5_IA32; }
+ private:
+ void compress_n(const byte[], u32bit blocks);
+ };
+
+}
+
+#endif