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

Function HH

dlib/md5/md5_kernel_1.cpp:109–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107 // ------------------------------------------------------------------------------------
108
109 inline void HH (
110 uint32& a,
111 uint32 b,
112 uint32 c,
113 uint32 d,
114 uint32 x,
115 uint32 s,
116 uint32 ac
117 )
118 {
119 a += H(b, c, d) + x + ac;
120 a = rotate_left(a, s);
121 a += b;
122 }
123
124 // ------------------------------------------------------------------------------------
125

Callers 1

scramble_blockFunction · 0.85

Calls 2

HFunction · 0.85
rotate_leftFunction · 0.85

Tested by

no test coverage detected