| 21 | #[derive(Clone, Debug)] |
| 22 | |
| 23 | pub struct PoseidonCommitChip< |
| 24 | F: PrimeField + Ord + FromUniformBytes<64>, |
| 25 | const WIDTH: usize, |
| 26 | const RATE: usize, |
| 27 | const L: usize, |
| 28 | > { |
| 29 | pub poseidon_config: Pow5Config<F, WIDTH, RATE>, |
| 30 | } |
| 31 | |
| 32 | #[derive(Debug)] |
| 33 | pub struct P128Pow5T3Gen<F: PrimeField, const SECURE_MDS: usize>(PhantomData<F>); |
nothing calls this directly
no outgoing calls
no test coverage detected