/* * crc.c * * Generic CRC calculation code. * */ #include "crc.h" void crc_init(crc_t *crc, int order, uint32_t polynom, uint32_t initial_value, uint32_t final_xor) { crc->order = order; crc->polynom = polynom; crc->initial_value = initial_value; crc->final_xor = final_xor; crc->mask = (1L<state; crc->state = crc->state >> 1; if( (oldstate^data) & 1 ) { crc->state ^= crc->polynom; } data >>= 1; } } void crc_clear(crc_t *crc) { crc->state = crc->initial_value & crc->mask; } uint32_t crc_finish(crc_t *crc) { return ( crc->state ^ crc->final_xor ) & crc->mask; }