mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 08:31:33 +03:00
6 lines
144 B
Plaintext
6 lines
144 B
Plaintext
import core.unstable.blake2s.Blake2s;
|
|
|
|
function main(seed: [u8; 32], message: [u8; 32]) -> [u8; 32] {
|
|
return Blake2s::hash(seed, message)
|
|
}
|