| 291 | |
| 292 | |
| 293 | void MD5::init(){ |
| 294 | finalized=0; // we just started! |
| 295 | |
| 296 | // Nothing counted, so count=0 |
| 297 | count[0] = 0; |
| 298 | count[1] = 0; |
| 299 | |
| 300 | // Load magic initialization constants. |
| 301 | state[0] = 0x67452301; |
| 302 | state[1] = 0xefcdab89; |
| 303 | state[2] = 0x98badcfe; |
| 304 | state[3] = 0x10325476; |
| 305 | } |
| 306 | |
| 307 | |
| 308 |
nothing calls this directly
no outgoing calls
no test coverage detected