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

Function GG

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

Source from the content-addressed store, hash-verified

40};
41
42let GG = function(a, b, c, d, x, s, ac) {
43 a = addUnsigned(a, addUnsigned(addUnsigned(G(b, c, d), x), ac));
44 return addUnsigned(rotateLeft(a, s), b);
45};
46
47let HH = function(a, b, c, d, x, s, ac) {
48 a = addUnsigned(a, addUnsigned(addUnsigned(H(b, c, d), x), ac));

Callers 1

getMD5.jsFile · 0.85

Calls 3

addUnsignedFunction · 0.85
GFunction · 0.85
rotateLeftFunction · 0.85

Tested by

no test coverage detected