Trait arkworks_gadgets::poseidon::Rounds[][src]

pub trait Rounds: Default + Clone {
    const WIDTH: usize;
    const FULL_ROUNDS: usize;
    const PARTIAL_ROUNDS: usize;
    const SBOX: PoseidonSbox;
}

Associated Constants

The size of the permutation, in field elements.

Number of full SBox rounds

Number of partial rounds

The S-box to apply in the sub words layer.

Implementors