summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/md4/md4.h
diff options
context:
space:
mode:
authorQt by Nokia <qt-info@nokia.com>2011-04-27 12:05:43 +0200
committeraxis <qt-info@nokia.com>2011-04-27 12:05:43 +0200
commit38be0d13830efd2d98281c645c3a60afe05ffece (patch)
tree6ea73f3ec77f7d153333779883e8120f82820abe /src/3rdparty/md4/md4.h
Initial import from the monolithic Qt.
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
Diffstat (limited to 'src/3rdparty/md4/md4.h')
-rw-r--r--src/3rdparty/md4/md4.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/3rdparty/md4/md4.h b/src/3rdparty/md4/md4.h
new file mode 100644
index 0000000000..69c3419faf
--- /dev/null
+++ b/src/3rdparty/md4/md4.h
@@ -0,0 +1,31 @@
+/*
+ * This is an OpenSSL-compatible implementation of the RSA Data Security,
+ * Inc. MD4 Message-Digest Algorithm.
+ *
+ * Written by Solar Designer <solar@openwall.com> in 2001, and placed in
+ * the public domain. See md4.c for more information.
+ */
+
+#ifndef __MD4_H
+#define __MD4_H
+
+#include <qglobal.h>
+
+QT_BEGIN_NAMESPACE
+
+#define MD4_RESULTLEN (128/8)
+
+struct md4_context {
+ quint32 lo, hi;
+ quint32 a, b, c, d;
+ unsigned char buffer[64];
+ quint32 block[MD4_RESULTLEN];
+};
+
+static void md4_init(struct md4_context *ctx);
+static void md4_update(struct md4_context *ctx, const unsigned char *data, size_t size);
+static void md4_final(struct md4_context *ctx, unsigned char result[MD4_RESULTLEN]);
+
+QT_END_NAMESPACE
+
+#endif