Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
83
function
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
88
function
ff(a, b, c, d, x, s, t) {
89
return
cmn((b & c) | (~b & d), a, b, x, s, t);
Callers
4
ff
Function · 0.85
gg
Function · 0.85
hh
Function · 0.85
ii
Function · 0.85
Calls
1
add32
Function · 0.85
Tested by
no test coverage detected