CRC Any

Build Status Build status

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.

Usage

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.

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.

Crates.io

https://crates.io/crates/crc-any

Documentation

https://docs.rs/crc-any

License

MIT