1 2 3 4 5 6 7
//! An implemention of the Poseidon permutation for fixed-width //! hashing. #![cfg_attr(not(feature = "std"), no_std)] mod permutation; pub use permutation::Instance;