X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/b7e8338d2b15b636017118e983c849f3de6784ae..f176990a8e30eda97e29da9fae4d5b979df215dc:/common/crc.c?ds=sidebyside diff --git a/common/crc.c b/common/crc.c index f8179008..47e21426 100644 --- a/common/crc.c +++ b/common/crc.c @@ -35,7 +35,7 @@ void crc_clear(crc_t *crc) { crc->state = reflect(crc->state, crc->order); } -void crc_update(crc_t *crc, uint32_t data, int data_width){ +void crc_update2(crc_t *crc, uint32_t data, int data_width){ if (crc->refin) data = reflect(data, data_width); @@ -52,7 +52,7 @@ void crc_update(crc_t *crc, uint32_t data, int data_width){ } } -void crc_update2(crc_t *crc, uint32_t data, int data_width) +void crc_update(crc_t *crc, uint32_t data, int data_width) { if (crc->refin) data = reflect(data, data_width); @@ -115,7 +115,7 @@ uint32_t CRC8Legic(uint8_t *buff, size_t size) { crc_t crc; crc_init_ref(&crc, 8, 0x63, 0x55, 0, TRUE, TRUE); for ( int i = 0; i < size; ++i) - crc_update(&crc, buff[i], 8); + crc_update2(&crc, buff[i], 8); return reflect(crc_finish(&crc), 8); }