Crate byond_crc32

Source
Expand description

§Example

use byond_crc32::Crc32;

let mut crc32 = Crc32::new();
crc32.update(b"123456789");
let checksum = crc32.as_u32();

Modules§

baseline
specialized

Structs§

Crc32
Represents an in-progress CRC-32/BYOND computation.