X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/652c39c63bce093cec80b174dfb0d8154e7c6827..ad493abc2afb4c415eadd6baa861434e803a563b:/common/crc.h diff --git a/common/crc.h b/common/crc.h index 8e68f3b3..fc76dc48 100644 --- a/common/crc.h +++ b/common/crc.h @@ -10,6 +10,7 @@ #define __CRC_H #include +#include typedef struct crc { uint32_t state; @@ -25,7 +26,7 @@ typedef struct crc { * final_xor is XORed onto the state before returning it from crc_result(). */ extern void crc_init(crc_t *crc, int order, uint32_t polynom, uint32_t initial_value, uint32_t final_xor); -/* Update the crc state. data is the data of length data_width bits (only the the +/* Update the crc state. data is the data of length data_width bits (only the * data_width lower-most bits are used). */ extern void crc_update(crc_t *crc, uint32_t data, int data_width); @@ -36,6 +37,12 @@ extern void crc_clear(crc_t *crc); /* Get the result of the crc calculation */ extern uint32_t crc_finish(crc_t *crc); +// Calculate CRC-8/Maxim checksum +uint32_t CRC8Maxim(uint8_t *buff, size_t size); + +// Calculate CRC-8/Legic checksum +uint32_t CRC8Legic(uint8_t *buff, size_t size); + /* Static initialization of a crc structure */ #define CRC_INITIALIZER(_order, _polynom, _initial_value, _final_xor) { \ .state = ((_initial_value) & ((1L<<(_order))-1)), \