cryprot_core/
random_oracle.rs

1pub type RandomOracle = blake3::Hasher;
2pub type Hash = blake3::Hash;
3
4pub fn hash(input: &[u8]) -> Hash {
5    blake3::hash(input)
6}