mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
a71ece51e4
ADD: the source from RevEng 1.30, got into the PM3 client.
17 lines
814 B
C
17 lines
814 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);
|
|
uint16_t crc16_ccitt_kermit(uint8_t const *message, int length);
|
|
uint16_t bit_reverse_uint16 (uint16_t value);
|
|
#endif
|