MCPcopy Create free account
hub / github.com/Useful-Scripts-Extension/useful-script / cmn

Function cmn

scripts/libs/crypto/md5.js:83–86  ·  view source on GitHub ↗
(q, a, b, x, s, t)

Source from the content-addressed store, hash-verified

81}
82
83function cmn(q, a, b, x, s, t) {
84 a = add32(add32(a, q), add32(x, t));
85 return add32((a << s) | (a >>> (32 - s)), b);
86}
87
88function ff(a, b, c, d, x, s, t) {
89 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