• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * This is the header file for the MD5 message-digest algorithm.
3  * The algorithm is due to Ron Rivest.  This code was
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.
6  *
7  * Equivalent code is available from RSA Data Security, Inc.
8  * This code has been tested against that, and is equivalent,
9  * except that you don't need to include two pages of legalese
10  * with every copy.
11  * To compute the message digest of a chunk of bytes, declare an
12  * MD5Context structure, pass it to MD5Init, call MD5Update as
13  * needed on buffers full of bytes, and then call MD5Final, which
14  * will fill a supplied 16-byte array with the digest.
15  *
16  */
17 
18 // Changes(fbarchard): Ported to C++ and Google style guide.
19 // Made context first parameter in MD5Final for consistency with Sha1.
20 // Changes(hellner): added rtc namespace
21 
22 #ifndef WEBRTC_BASE_MD5_H_
23 #define WEBRTC_BASE_MD5_H_
24 
25 #include "webrtc/base/basictypes.h"
26 
27 namespace rtc {
28 
29 // Canonical name for a MD5 context structure, used in many crypto libs.
30 typedef struct MD5Context MD5_CTX;
31 
32 struct MD5Context {
33   uint32 buf[4];
34   uint32 bits[2];
35   uint32 in[16];
36 };
37 
38 void MD5Init(MD5Context* context);
39 void MD5Update(MD5Context* context, const uint8* data, size_t len);
40 void MD5Final(MD5Context* context, uint8 digest[16]);
41 void MD5Transform(uint32 buf[4], const uint32 in[16]);
42 
43 }  // namespace rtc
44 
45 #endif  // WEBRTC_BASE_MD5_H_
46