Trait snarkvm_wasm::PoseidonMDSParameters[][src]

pub trait PoseidonMDSParameters: 'static + Send + Sync + FftParameters {
    const POSEIDON_MDS: [[Self::BigInteger; 3]; 3];
    const POSEIDON_ALPHA: u64;
    const POSEIDON_FULL_ROUNDS: u32;
    const POSEIDON_PARTIAL_ROUNDS: u32;
}
Expand description

The interface for MDS parameters

Associated Constants

The 3x3 MDS matrix

The alpha

The number of full rounds

The number of partial rounds

Implementors