* Start MD5 accumulation. Set bit count to 0 and buffer to mysterious * initialization constants. */
| 69 | * initialization constants. |
| 70 | */ |
| 71 | void MD5Init(struct MD5Context *ctx) |
| 72 | { |
| 73 | ctx->buf[0] = 0x67452301; |
| 74 | ctx->buf[1] = 0xefcdab89; |
| 75 | ctx->buf[2] = 0x98badcfe; |
| 76 | ctx->buf[3] = 0x10325476; |
| 77 | |
| 78 | ctx->bits[0] = 0; |
| 79 | ctx->bits[1] = 0; |
| 80 | } |
| 81 | |
| 82 | /* |
| 83 | * Update context to reflect the concatenation of another buffer full |