Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/PierreGode/Ragnar
/ H
Function
H
pager_lib/smb/utils/md4.py:225–225 ·
view source on GitHub ↗
(x, y, z)
Source
from the content-addressed store, hash-verified
223
def
F(x, y, z):
return
(((x) & (y)) | ((~x) & (z)))
224
def
G(x, y, z):
return
(((x) & (y)) | ((x) & (z)) | ((y) & (z)))
225
def
H(x, y, z):
return
((x) ^ (y) ^ (z))
226
227
def
ROL(x, n):
return
(((x) << n) | ((x) >> (32-n)))
228
Callers
1
f3
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected