CRC32
Resurrecting the crc32 crate from the ashes.
Usage
Add crc32-v2 to your Cargo.toml file:
[]
= "0.0.4"
or run:
Examples
use crc32;
use crc32_little;
const CRC32_INIT: u32 = 0; // Initial CRC value, you can customize it
// Output
// CRC-32: ebe6c6e6
// CRC-32 (Little Endian): a29eb9bf