pub trait Rounds: Default + Clone {
    const WIDTH: usize;
    const ROUNDS: usize;
}

Associated Constants

The size of the input vector

Number of mimc rounds

Implementors