| 511 | |
| 512 | |
| 513 | inline void MD5::FF(uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, |
| 514 | uint4 s, uint4 ac){ |
| 515 | a += F(b, c, d) + x + ac; |
| 516 | a = rotate_left (a, s) +b; |
| 517 | } |
| 518 | |
| 519 | inline void MD5::GG(uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, |
| 520 | uint4 s, uint4 ac){ |
nothing calls this directly
no outgoing calls
no test coverage detected