Function xor_bytes

Source
pub fn xor_bytes(left: &mut [u8], right: &[u8])
Expand description

XORs two 512-bit state arrays. This function modifies the first array in place.

§Arguments

  • a - A mutable reference to the first state array.
  • b - A reference to the second state array.

§Panics

Panics if the two arrays are not of equal length.