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