2007-05-03 22:45:27 +02:00
|
|
|
// Copyright 2007 Google Inc. All Rights Reserved.
|
|
|
|
|
// Author: liuli@google.com (Liu Li)
|
2007-09-28 20:14:48 +02:00
|
|
|
#ifndef COMMON_MD5_H__
|
|
|
|
|
#define COMMON_MD5_H__
|
2007-05-03 22:45:27 +02:00
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
2011-11-18 22:40:27 +01:00
|
|
|
namespace google_breakpad {
|
|
|
|
|
|
2007-05-03 22:45:27 +02:00
|
|
|
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);
|
|
|
|
|
|
2011-11-18 22:40:27 +01:00
|
|
|
} // namespace google_breakpad
|
2007-05-03 22:45:27 +02:00
|
|
|
|
2007-09-28 20:14:48 +02:00
|
|
|
#endif // COMMON_MD5_H__
|