MD5 hashing. More...

Go to the source code of this file.
Data Structures | |
| struct | md5_context |
| Internal state of the MD5 hash calculation. More... | |
Defines | |
| #define | MD5CONTEXT_INITIALIZER { { 0 }, { 0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476 }, 0 } |
| Contents of an initialized MD5 context. | |
Functions | |
| void | md5_update (struct md5_context *m, const void *buf, size_t len) |
| Update the hash value by appending a buffer. | |
| void | md5_final (struct md5_context *m, unsigned char out[16]) |
| Finalize the hash value and return its hash value. | |
MD5 hashing.
Definition in file md5.h.
1.6.3