MCPcopy Create free account
hub / github.com/davisking/dlib / FF

Function FF

dlib/md5/md5_kernel_1.cpp:75–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73 // ------------------------------------------------------------------------------------
74
75 inline void FF (
76 uint32& a,
77 uint32 b,
78 uint32 c,
79 uint32 d,
80 uint32 x,
81 uint32 s,
82 uint32 ac
83 )
84 {
85 a += F(b, c, d) + x + ac;
86 a = rotate_left(a, s);
87 a += b;
88 }
89
90 // ------------------------------------------------------------------------------------
91

Callers 1

scramble_blockFunction · 0.85

Calls 2

rotate_leftFunction · 0.85
FFunction · 0.70

Tested by

no test coverage detected