MCPcopy
hub / github.com/mumuy/browser / HH

Function HH

src/module/utils/getMD5.js:47–50  ·  view source on GitHub ↗
(a, b, c, d, x, s, ac)

Source from the content-addressed store, hash-verified

45};
46
47let HH = function(a, b, c, d, x, s, ac) {
48 a = addUnsigned(a, addUnsigned(addUnsigned(H(b, c, d), x), ac));
49 return addUnsigned(rotateLeft(a, s), b);
50};
51
52let II = function(a, b, c, d, x, s, ac) {
53 a = addUnsigned(a, addUnsigned(addUnsigned(I(b, c, d), x), ac));

Callers 1

getMD5.jsFile · 0.85

Calls 3

addUnsignedFunction · 0.85
HFunction · 0.85
rotateLeftFunction · 0.85

Tested by

no test coverage detected