[][src]Trait crc::crc32::Hasher32

pub trait Hasher32 {
    fn reset(&mut self);
fn write(&mut self, bytes: &[u8]);
fn sum32(&self) -> u32; }

Required methods

fn reset(&mut self)

Resets CRC calculation to initial value

fn write(&mut self, bytes: &[u8])

Updates CRC calculation with input byte array bytes

fn sum32(&self) -> u32

Returns checksum after being XOR'd with final_xor

Loading content...

Implementors

impl Hasher32 for Digest[src]

Loading content...