pub trait Hasher16 {
    fn reset(&mut self);
    fn write(&mut self, bytes: &[u8]);
    fn sum16(&self) -> u16;
}

Required Methods

Resets CRC calculation to initial value

Updates CRC calculation with input byte array bytes

Returns checksum after being XOR’d with final_xor

Implementors