crcxx 0.3.1

The crate computes CRC-8/16/32/64/128 using various methods. Included catalog of CRC parameters simplify usage.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod cg_assert;

#[macro_use]
mod macros;

pub const MAX_SLICES: usize = 32;

pub mod crc128;
pub mod crc16;
pub mod crc32;
pub mod crc64;
pub mod crc8;