| 517 | } |
| 518 | |
| 519 | inline void MD5::GG(uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, |
| 520 | uint4 s, uint4 ac){ |
| 521 | a += G(b, c, d) + x + ac; |
| 522 | a = rotate_left (a, s) +b; |
| 523 | } |
| 524 | |
| 525 | inline void MD5::HH(uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, |
| 526 | uint4 s, uint4 ac){ |
nothing calls this directly
no outgoing calls
no test coverage detected