poseidon_permutation/
lib.rs

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