summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2012-08-17 21:07:13 (GMT)
committerCătălin Badea <catalin.badea392@gmail.com>2012-08-19 20:17:52 (GMT)
commita216cabfbd9ee0244e70d1eb6093986e430c9ef1 (patch)
tree0786416c8c89cfbe898d6eb8b0e32fee7740923a /3rdParty/Breakpad/src/common/md5.h
parent456f6297ddb670115430aedccc5a49908f32b2ea (diff)
downloadswift-contrib-a216cabfbd9ee0244e70d1eb6093986e430c9ef1.zip
swift-contrib-a216cabfbd9ee0244e70d1eb6093986e430c9ef1.tar.bz2
Added Breakpad support for Windows.
Diffstat (limited to '3rdParty/Breakpad/src/common/md5.h')
-rw-r--r--3rdParty/Breakpad/src/common/md5.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/3rdParty/Breakpad/src/common/md5.h b/3rdParty/Breakpad/src/common/md5.h
new file mode 100644
index 0000000..e96521e
--- /dev/null
+++ b/3rdParty/Breakpad/src/common/md5.h
@@ -0,0 +1,27 @@
+// Copyright 2007 Google Inc. All Rights Reserved.
+// Author: liuli@google.com (Liu Li)
+#ifndef COMMON_MD5_H__
+#define COMMON_MD5_H__
+
+#include <stdint.h>
+
+namespace google_breakpad {
+
+typedef uint32_t u32;
+typedef uint8_t u8;
+
+struct MD5Context {
+ u32 buf[4];
+ u32 bits[2];
+ u8 in[64];
+};
+
+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);
+
+} // namespace google_breakpad
+
+#endif // COMMON_MD5_H__