| 28 | namespace limax { |
| 29 | |
| 30 | void MD5::reset() { |
| 31 | ctx.state[0] = 0x67452301; |
| 32 | ctx.state[1] = 0xefcdab89; |
| 33 | ctx.state[2] = 0x98badcfe; |
| 34 | ctx.state[3] = 0x10325476; |
| 35 | ctx.count = 0; |
| 36 | ctx.remain = 0; |
| 37 | } |
| 38 | |
| 39 | MD5::MD5(std::shared_ptr<Codec> _sink) : sink(_sink) |
| 40 | { |
no test coverage detected