| 489 | // F, G, H and I are basic MD5 functions. |
| 490 | |
| 491 | inline unsigned int MD5::F (uint4 x, uint4 y, uint4 z){ |
| 492 | return (x & y) | (~x & z); |
| 493 | } |
| 494 | |
| 495 | inline unsigned int MD5::G (uint4 x, uint4 y, uint4 z){ |
| 496 | return (x & z) | (y & ~z); |
nothing calls this directly
no outgoing calls
no test coverage detected