summaryrefslogtreecommitdiff
path: root/md4.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2002-10-04 17:31:41 +0000
committerweidai <weidai11@users.noreply.github.com>2002-10-04 17:31:41 +0000
commita3b6ece7ab341b5b14135baeccea7d5e4c086771 (patch)
tree8b045309c238226c32a563b1df6b9c30a2f0e0b3 /md4.h
downloadcryptopp-git-a3b6ece7ab341b5b14135baeccea7d5e4c086771.tar.gz
Initial revision
Diffstat (limited to 'md4.h')
-rw-r--r--md4.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/md4.h b/md4.h
new file mode 100644
index 00000000..22a7ab8a
--- /dev/null
+++ b/md4.h
@@ -0,0 +1,25 @@
+#ifndef CRYPTOPP_MD4_H
+#define CRYPTOPP_MD4_H
+
+#include "iterhash.h"
+
+NAMESPACE_BEGIN(CryptoPP)
+
+//! <a href="http://www.weidai.com/scan-mirror/md.html#MD4">MD4</a>
+/*! \warning MD4 is considered insecure, and should not be used
+ unless you absolutely need compatibility with a broken product. */
+class MD4 : public IteratedHashWithStaticTransform<word32, LittleEndian, 64, MD4>
+{
+public:
+ enum {DIGESTSIZE = 16};
+ MD4() : IteratedHashWithStaticTransform<word32, LittleEndian, 64, MD4>(DIGESTSIZE) {Init();}
+ static void Transform(word32 *digest, const word32 *data);
+ static const char *StaticAlgorithmName() {return "MD4";}
+
+protected:
+ void Init();
+};
+
+NAMESPACE_END
+
+#endif