pub trait SpongeConstants {
    const PERM_ROUNDS_FULL: usize;
    const PERM_ROUNDS_PARTIAL: usize;
    const PERM_HALF_ROUNDS_FULL: usize;
    const PERM_SBOX: u32;
    const PERM_FULL_MDS: bool;
    const PERM_INITIAL_ARK: bool;
    const SPONGE_CAPACITY: usize = 1usize;
    const SPONGE_WIDTH: usize = 3usize;
    const SPONGE_RATE: usize = 2usize;
}

Required Associated Constants§

Provided Associated Constants§

source

const SPONGE_CAPACITY: usize = 1usize

source

const SPONGE_WIDTH: usize = 3usize

source

const SPONGE_RATE: usize = 2usize

Implementors§