mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
CHG: trying to unify the crc algos in one place.
This commit is contained in:
parent
df007486f5
commit
82e690f48b
4 changed files with 32 additions and 14 deletions
|
@ -68,6 +68,8 @@ uint32_t CRC16Legic(uint8_t *buff, size_t size, uint8_t uidcrc);
|
|||
// test crc 16.
|
||||
uint32_t CRC16_DNP(uint8_t *buff, size_t size);
|
||||
uint32_t CRC16_CCITT(uint8_t *buff, size_t size);
|
||||
uint32_t CRC16_Iso15693(uint8_t *buff, size_t size);
|
||||
uint32_t CRC16_ICLASS(uint8_t *buff, size_t size);
|
||||
|
||||
/* Static initialization of a crc structure */
|
||||
#define CRC_INITIALIZER(_order, _polynom, _initial_value, _final_xor) { \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue