mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
ADD: @marshmellow42 's fixed version of the ISO11784 FDX-B
ADD: crc16_ccitt_rev (reverse version of crc16_ccitt 0x0000)
This commit is contained in:
parent
22a6a62fbb
commit
ad6219fc91
10 changed files with 109 additions and 45 deletions
|
@ -43,3 +43,7 @@ uint16_t crc16(uint8_t const *message, int length, uint16_t remainder, uint16_t
|
|||
uint16_t crc16_ccitt(uint8_t const *message, int length) {
|
||||
return crc16(message, length, 0xffff, 0x1021);
|
||||
}
|
||||
|
||||
uint16_t crc16_ccitt_rev(uint8_t const *message, int length) {
|
||||
return crc16(message, length, 0x0000, 0x1021);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue