X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/bd20f8f47847787e1f3e933043933272908c5beb..cd0bed3c98514fcc53c65bd40fef78709378783c:/common/crc.c diff --git a/common/crc.c b/common/crc.c index 90d57afa..6c2f6994 100644 --- a/common/crc.c +++ b/common/crc.c @@ -5,8 +5,10 @@ //----------------------------------------------------------------------------- // Generic CRC calculation code. //----------------------------------------------------------------------------- - #include "crc.h" +#include "util.h" +#include +#include void crc_init(crc_t *crc, int order, uint32_t polynom, uint32_t initial_value, uint32_t final_xor) { @@ -20,8 +22,7 @@ void crc_init(crc_t *crc, int order, uint32_t polynom, uint32_t initial_value, u void crc_update(crc_t *crc, uint32_t data, int data_width) { - int i; - for(i=0; istate; crc->state = crc->state >> 1; if( (oldstate^data) & 1 ) { @@ -40,3 +41,30 @@ uint32_t crc_finish(crc_t *crc) { return ( crc->state ^ crc->final_xor ) & crc->mask; } + +//credits to iceman +uint32_t CRC8Maxim(uint8_t *buff, size_t size) { + crc_t crc; + crc_init(&crc, 9, 0x8c, 0x00, 0x00); + crc_clear(&crc); + + for (size_t i=0; i < size; ++i) + crc_update(&crc, buff[i], 8); + + return crc_finish(&crc); +} + +//credits to iceman +uint32_t CRC8Legic(uint8_t *buff, size_t size) { + + // Poly 0x63, reversed poly 0xC6, Init 0x55, Final 0x00 + crc_t crc; + crc_init(&crc, 8, 0xC6, 0x55, 0); + crc_clear(&crc); + + for ( int i = 0; i < size; ++i) + crc_update(&crc, buff[i], 8); + return SwapBits(crc_finish(&crc), 8); +} + +