MD5 initialization. Begins an MD5 operation, writing a new context. MD5_CTX *context - context */
| 108 | MD5_CTX *context - context |
| 109 | */ |
| 110 | void MD5Init (MD5_CTX *context) |
| 111 | { |
| 112 | context->count[0] = context->count[1] = 0; |
| 113 | /* Load magic initialization constants. |
| 114 | */ |
| 115 | context->state[0] = 0x67452301; |
| 116 | context->state[1] = 0xefcdab89; |
| 117 | context->state[2] = 0x98badcfe; |
| 118 | context->state[3] = 0x10325476; |
| 119 | } |
| 120 | |
| 121 | /* MD5 block update operation. Continues an MD5 message-digest |
| 122 | operation, processing another message block, and updating the |
no outgoing calls
no test coverage detected