MCPcopy Create free account
hub / github.com/cryptii/cryptii / cmn

Function cmn

src/Encoder/Hash/md5.js:197–200  ·  view source on GitHub ↗
(q, a, b, x, s, t)

Source from the content-addressed store, hash-verified

195}
196
197function cmn (q, a, b, x, s, t) {
198 a = add32(add32(a, q), add32(x, t))
199 return add32((a << s) | (a >>> (32 - s)), b)
200}
201
202function ff (a, b, c, d, x, s, t) {
203 return cmn((b & c) | ((~b) & d), a, b, x, s, t)

Callers 4

ffFunction · 0.85
ggFunction · 0.85
hhFunction · 0.85
iiFunction · 0.85

Calls 1

add32Function · 0.85

Tested by

no test coverage detected