MCPcopy Create free account
hub / github.com/SNAS/openbmp / F

Method F

Server/src/md5.cpp:491–493  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected