Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: obsolete/breakpad/common/md5.h

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « obsolete/breakpad/common/mac/testing/GTMSenTestCase.m ('k') | obsolete/breakpad/common/md5.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2007 Google Inc. All Rights Reserved.
2 // Author: liuli@google.com (Liu Li)
3 #ifndef COMMON_MD5_H__
4 #define COMMON_MD5_H__
5
6 //#include <stdint.h>
7 #include "dwarf/types.h"
8
9 typedef uint32_t u32;
10 typedef uint8_t u8;
11
12 struct MD5Context {
13 u32 buf[4];
14 u32 bits[2];
15 u8 in[64];
16 };
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif // __cplusplus
21
22 void MD5Init(struct MD5Context *ctx);
23
24 void MD5Update(struct MD5Context *ctx, unsigned char const *buf, unsigned len);
25
26 void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
27
28 #ifdef __cplusplus
29 }
30 #endif
31
32 #endif // COMMON_MD5_H__
OLDNEW
« no previous file with comments | « obsolete/breakpad/common/mac/testing/GTMSenTestCase.m ('k') | obsolete/breakpad/common/md5.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698