* Start MD5 accumulation. Set bit count to 0 and buffer to mysterious * initialization constants. */
| 28 | * initialization constants. |
| 29 | */ |
| 30 | void md5_init(md5_ctx *ctx) |
| 31 | { |
| 32 | ctx->buf[0] = 0x67452301; |
| 33 | ctx->buf[1] = 0xefcdab89; |
| 34 | ctx->buf[2] = 0x98badcfe; |
| 35 | ctx->buf[3] = 0x10325476; |
| 36 | |
| 37 | ctx->bytes[0] = 0; |
| 38 | ctx->bytes[1] = 0; |
| 39 | } |
| 40 | |
| 41 | /* |
| 42 | * Update context to reflect the concatenation of another buffer full |
no outgoing calls
no test coverage detected
searching dependent graphs…