MCPcopy Create free account
hub / github.com/ShenCiao/CialloResearch / II

Function II

dlib/dlib/md5/md5_kernel_1.cpp:126–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124 // ------------------------------------------------------------------------------------
125
126 inline void II (
127 uint32& a,
128 uint32 b,
129 uint32 c,
130 uint32 d,
131 uint32 x,
132 uint32 s,
133 uint32 ac
134 )
135 {
136 a += I(b, c, d) + x + ac;
137 a = rotate_left(a, s);
138 a += b;
139 }
140
141 // ------------------------------------------------------------------------------------
142

Callers 1

scramble_blockFunction · 0.85

Calls 2

IFunction · 0.85
rotate_leftFunction · 0.85

Tested by

no test coverage detected