mirror of
https://github.com/boku7/Loki
synced 2026-06-06 15:24:27 +00:00
19 lines
234 B
NASM
19 lines
234 B
NASM
Hasher1 proto
|
|
|
|
.code
|
|
|
|
Hasher1 proc
|
|
xor rax, rax
|
|
|
|
h1loop:
|
|
add al, [rdx]
|
|
xor al, 0CCh
|
|
rol rax, 6h
|
|
inc rdx
|
|
dec rcx
|
|
test cl, cl
|
|
jnz h1loop
|
|
ret
|
|
|
|
Hasher1 endp
|
|
end |