Function sha::sha1::ops::expand_round_x4 [-] [+] [src]

pub fn expand_round_x4(w: &mut [u32; 20], t: usize)

This function can be easily implemented with Intel SHA intruction set extensions.

{
    sha1msg2(sha1msg1(work[0], work[1]) ^ work[2], work[3])
}