fn crc32_update(crc: u32, data: &[u8]) -> u32Expand description
CRC32 rolling update used by Checkpoint::content_digest.
Takes the current reverse-XOR accumulator (so !crc gives the
final digest) and updates it with the input bytes.
fn crc32_update(crc: u32, data: &[u8]) -> u32CRC32 rolling update used by Checkpoint::content_digest.
Takes the current reverse-XOR accumulator (so !crc gives the
final digest) and updates it with the input bytes.