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

Method FF

Server/src/md5.cpp:513–517  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

511
512
513inline 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
519inline void MD5::GG(uint4& a, uint4 b, uint4 c, uint4 d, uint4 x,
520 uint4 s, uint4 ac){

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected