mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 10:14:34 +08:00
47cbb2d418
ADD: added CRC16 CCITT functionality to LUA FIX: tnp3.lua is now correctly decryping data while dumping
15 lines
703 B
C
15 lines
703 B
C
//-----------------------------------------------------------------------------
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
// the license.
|
|
//-----------------------------------------------------------------------------
|
|
// CRC16
|
|
//-----------------------------------------------------------------------------
|
|
#include <stdint.h>
|
|
|
|
#ifndef __CRC16_H
|
|
#define __CRC16_H
|
|
unsigned short update_crc16(unsigned short crc, unsigned char c);
|
|
uint16_t crc16(uint8_t const *message, int length, uint16_t remainder, uint16_t polynomial);
|
|
uint16_t crc16_ccitt(uint8_t const *message, int length);
|
|
#endif
|