zkhash/
lib.rs

1//! # zkhash
2//!
3//! A pure Rust implementation of the ReinforcedConcrete Permutation
4// asm feature is now stable and no longer needs explicit enabling
5
6pub extern crate ark_ff;
7
8pub mod fields;
9pub mod poseidon2;
10pub mod utils;