trait Sha2: Word + BitXor<Output = Self> + Shr<usize, Output = Self> {
const BIG_SIGMA_0: (u32, u32, u32);
const BIG_SIGMA_1: (u32, u32, u32);
const SMALL_SIGMA_0: (u32, u32, usize);
const SMALL_SIGMA_1: (u32, u32, usize);
const K: &'static [Self];
}
Expand description
A SHA-2 input word.
Required Associated Constants§
const BIG_SIGMA_0: (u32, u32, u32)
const BIG_SIGMA_1: (u32, u32, u32)
const SMALL_SIGMA_0: (u32, u32, usize)
const SMALL_SIGMA_1: (u32, u32, usize)
const K: &'static [Self]
Object Safety§
This trait is not object safe.