mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-02-07 13:44:02 +00:00
_LIBCPP_VERSION doesn't reliably detect c++11. Change-Id: I1adb4303269885e4a08648f049e14b244a2fde50 Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/2911693 Reviewed-by: Nelson Billing <nbilling@google.com>
29 lines
557 B
C++
29 lines
557 B
C++
// Copyright 2007 Google Inc. All Rights Reserved.
|
|
// Author: liuli@google.com (Liu Li)
|
|
#ifndef COMMON_MD5_H__
|
|
#define COMMON_MD5_H__
|
|
|
|
#include <stddef.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, size_t len);
|
|
|
|
void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
|
|
|
|
} // namespace google_breakpad
|
|
|
|
#endif // COMMON_MD5_H__
|