crcany-core 0.0.2

Core implementation of crcany library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::model::BitwiseModel;

pub struct CombiningModel {
    pub model: BitwiseModel,
    // length of the table_comb cycle
    pub cycle: u16,
    // index of table_comb to cycle back to
    pub back: u16,
    // table for CRC combination
    pub table_comb: [u64; 67],
}