mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-14 03:33:11 +00:00
9 lines
242 B
NASM
9 lines
242 B
NASM
// Computes the Keccak256 hash of some arbitrary bytes in memory.
|
|
// The given memory values should be in the range of a byte.
|
|
//
|
|
// Pre stack: ADDR, len, retdest
|
|
// Post stack: hash
|
|
global keccak_general:
|
|
// stack: ADDR, len
|
|
// TODO
|