leo/stdlib/unstable/blake2s.leo

5 lines
116 B
Plaintext
Raw Normal View History

2021-09-10 15:55:07 +03:00
circuit Blake2s {
function hash(seed: [u8; 32], message: [u8; 32]) -> [u8; 32] {
return [0; 32];
}
}