To compute CRC values by providing the length of bits, expression, reflection, an initial value and a final xor value. It has built-in CRC-8-ATM, CRC-8-CDMA, CRC-16-IBM, CRC16-CCITT, CRC-32-IEEE, CRC-32-C, CRC-64-ISO and CRC-64-ECMA functions.
You can use create_crc
associated function to create a CRC instance by providing the length of bits, expression, reflection, an initial value and a final xor value. For example, if you want to compute a CRC-24 value.
```rust extern crate crc_any;
use crc_any::CRC;
let mut crc24 = CRC::create_crc(0x0000000000864cfb, 24, 0x0000000000b704ce, 0x0000000000000000, false);
crc24.digest(b"hello");
asserteq!([71, 245, 138].tovec(), crc24.getcrcvec()); ```
To simplify the usage, there are several common versions of CRC whose computing functions are already built-in.
mhash
)mhash
is a common library which has two weird versions of CRC32 called crc32
and crc32b
. crc32
and crc32mhash
in this module are crc32b
and crc32
in mhash respectively.For instance,
```rust extern crate crc_any;
use crc_any::CRC;
let mut crc64ecma = CRC::crc64ecma();
crc64ecma.digest(b"hello");
asserteq!([236, 83, 136, 71, 154, 124, 145, 63].tovec(), crc64ecma.getcrcvec()); ```
After getting a CRC value, you can still use the digest
method to continue computing the next CRC values.
https://crates.io/crates/crc-any
https://docs.rs/crc-any