pub trait Item: UInt + Copy + Sized {
    type KType: Array<Output = Self>;

    const K: Self::KType;
    const BIG_S0: BigSigma;
    const BIG_S1: BigSigma;
    const SMALL_S0: SmallSigma;
    const SMALL_S1: SmallSigma;

    fn w(a: &Hash<Self>, b: &Hash<Self>) -> [Self; 16];
}

Associated Types

Associated Constants

Required methods

Implementations on Foreign Types

Implementors