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

Side by Side Diff: webrtc/base/md5.h

Issue 1362503003: Use suffixed {uint,int}{8,16,32,64}_t types. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase + revert basictypes.h (to be landed separately just in case of a revert due to unexpected us… Created 5 years, 2 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 | « webrtc/base/macsocketserver_unittest.cc ('k') | webrtc/base/md5.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * This is the header file for the MD5 message-digest algorithm. 2 * This is the header file for the MD5 message-digest algorithm.
3 * The algorithm is due to Ron Rivest. This code was 3 * The algorithm is due to Ron Rivest. This code was
4 * written by Colin Plumb in 1993, no copyright is claimed. 4 * written by Colin Plumb in 1993, no copyright is claimed.
5 * This code is in the public domain; do with it what you wish. 5 * This code is in the public domain; do with it what you wish.
6 * 6 *
7 * Equivalent code is available from RSA Data Security, Inc. 7 * Equivalent code is available from RSA Data Security, Inc.
8 * This code has been tested against that, and is equivalent, 8 * This code has been tested against that, and is equivalent,
9 * except that you don't need to include two pages of legalese 9 * except that you don't need to include two pages of legalese
10 * with every copy. 10 * with every copy.
11 * To compute the message digest of a chunk of bytes, declare an 11 * To compute the message digest of a chunk of bytes, declare an
12 * MD5Context structure, pass it to MD5Init, call MD5Update as 12 * MD5Context structure, pass it to MD5Init, call MD5Update as
13 * needed on buffers full of bytes, and then call MD5Final, which 13 * needed on buffers full of bytes, and then call MD5Final, which
14 * will fill a supplied 16-byte array with the digest. 14 * will fill a supplied 16-byte array with the digest.
15 * 15 *
16 */ 16 */
17 17
18 // Changes(fbarchard): Ported to C++ and Google style guide. 18 // Changes(fbarchard): Ported to C++ and Google style guide.
19 // Made context first parameter in MD5Final for consistency with Sha1. 19 // Made context first parameter in MD5Final for consistency with Sha1.
20 // Changes(hellner): added rtc namespace 20 // Changes(hellner): added rtc namespace
21 // Changes(pbos): Reverted types back to uint32(8)_t with _t suffix.
21 22
22 #ifndef WEBRTC_BASE_MD5_H_ 23 #ifndef WEBRTC_BASE_MD5_H_
23 #define WEBRTC_BASE_MD5_H_ 24 #define WEBRTC_BASE_MD5_H_
24 25
25 #include "webrtc/base/basictypes.h" 26 #include <stdint.h>
27 #include <stdlib.h>
26 28
27 namespace rtc { 29 namespace rtc {
28 30
29 struct MD5Context { 31 struct MD5Context {
30 uint32 buf[4]; 32 uint32_t buf[4];
31 uint32 bits[2]; 33 uint32_t bits[2];
32 uint32 in[16]; 34 uint32_t in[16];
33 }; 35 };
34 36
35 void MD5Init(MD5Context* context); 37 void MD5Init(MD5Context* context);
36 void MD5Update(MD5Context* context, const uint8* data, size_t len); 38 void MD5Update(MD5Context* context, const uint8_t* data, size_t len);
37 void MD5Final(MD5Context* context, uint8 digest[16]); 39 void MD5Final(MD5Context* context, uint8_t digest[16]);
38 void MD5Transform(uint32 buf[4], const uint32 in[16]); 40 void MD5Transform(uint32_t buf[4], const uint32_t in[16]);
39 41
40 } // namespace rtc 42 } // namespace rtc
41 43
42 #endif // WEBRTC_BASE_MD5_H_ 44 #endif // WEBRTC_BASE_MD5_H_
OLDNEW
« no previous file with comments | « webrtc/base/macsocketserver_unittest.cc ('k') | webrtc/base/md5.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698