summaryrefslogtreecommitdiff
path: root/md5.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2002-10-04 17:31:41 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2002-10-04 17:31:41 +0000
commitb21162cf8e06f40baa1f58be6a8c17435cebc34d (patch)
tree8b045309c238226c32a563b1df6b9c30a2f0e0b3 /md5.h
downloadcryptopp-b21162cf8e06f40baa1f58be6a8c17435cebc34d.tar.gz
Initial revision
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@2 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'md5.h')
-rw-r--r--md5.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/md5.h b/md5.h
new file mode 100644
index 0000000..2e8850f
--- /dev/null
+++ b/md5.h
@@ -0,0 +1,24 @@
+#ifndef CRYPTOPP_MD5_H
+#define CRYPTOPP_MD5_H
+
+#include "iterhash.h"
+
+NAMESPACE_BEGIN(CryptoPP)
+
+//! <a href="http://www.weidai.com/scan-mirror/md.html#MD5">MD5</a>
+/*! 128 Bit Hash */
+class MD5 : public IteratedHashWithStaticTransform<word32, LittleEndian, 64, MD5>
+{
+public:
+ enum {DIGESTSIZE = 16};
+ MD5() : IteratedHashWithStaticTransform<word32, LittleEndian, 64, MD5>(DIGESTSIZE) {Init();}
+ static void Transform(word32 *digest, const word32 *data);
+ static const char * StaticAlgorithmName() {return "MD5";}
+
+protected:
+ void Init();
+};
+
+NAMESPACE_END
+
+#endif