crcany_core/model/
combining.rs

1use crate::model::BitwiseModel;
2
3pub struct CombiningModel {
4    pub model: BitwiseModel,
5    // length of the table_comb cycle
6    pub cycle: u16,
7    // index of table_comb to cycle back to
8    pub back: u16,
9    // table for CRC combination
10    pub table_comb: [u64; 67],
11}