aboutsummaryrefslogtreecommitdiff
path: root/src/common/linux/md5.h
diff options
context:
space:
mode:
authorluly81 <luly81@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-05-03 20:45:27 +0000
committerluly81 <luly81@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-05-03 20:45:27 +0000
commit265726e56ccfe5960dc7656a7b52db66b47ad482 (patch)
tree5fa919b07d83734c03ed8d7567cabf339a6361f8 /src/common/linux/md5.h
parentIssue 152 - Patch by Dave Camp, Reviewer Chris Rogers (diff)
downloadbreakpad-265726e56ccfe5960dc7656a7b52db66b47ad482.tar.xz
Add md5 implementation into code base to get rid of
openssl dependency. git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@153 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/linux/md5.h')
-rw-r--r--src/common/linux/md5.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/common/linux/md5.h b/src/common/linux/md5.h
new file mode 100644
index 00000000..03a13d6f
--- /dev/null
+++ b/src/common/linux/md5.h
@@ -0,0 +1,31 @@
+// Copyright 2007 Google Inc. All Rights Reserved.
+// Author: liuli@google.com (Liu Li)
+#ifndef COMMON_LINUX_MD5_H__
+#define COMMON_LINUX_MD5_H__
+
+#include <stdint.h>
+
+typedef uint32_t u32;
+typedef uint8_t u8;
+
+struct MD5Context {
+ u32 buf[4];
+ u32 bits[2];
+ u8 in[64];
+};
+
+#ifdef __cplusplus
+extern "C" {
+#endif // __cplusplus
+
+void MD5Init(struct MD5Context *ctx);
+
+void MD5Update(struct MD5Context *ctx, unsigned char const *buf, unsigned len);
+
+void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // COMMON_LINUX_MD5_H__