]> git.zerfleddert.de Git - proxmark3-svn/blame - common/crc16.c
FIX: The "hf legic load" had an bug where it send the read byte as uint32_t to the...
[proxmark3-svn] / common / crc16.c
CommitLineData
bd20f8f4 1//-----------------------------------------------------------------------------
2// This code is licensed to you under the terms of the GNU GPL, version 2 or,
3// at your option, any later version. See the LICENSE.txt file for the text of
4// the license.
5//-----------------------------------------------------------------------------
6// CRC16
7//-----------------------------------------------------------------------------
8
fdcc61d3 9#include "crc16.h"
6b6815bc 10#define CRC16_POLY_CCITT 0x1021
11#define CRC16_POLY 0x8408
47cbb2d4 12
fdcc61d3 13unsigned short update_crc16( unsigned short crc, unsigned char c )
14{
15 unsigned short i, v, tcrc = 0;
16
17 v = (crc ^ c) & 0xff;
18 for (i = 0; i < 8; i++) {
6b6815bc 19 tcrc = ( (tcrc ^ v) & 1 ) ? ( tcrc >> 1 ) ^ CRC16_POLY : tcrc >> 1;
fdcc61d3 20 v >>= 1;
21 }
22
6b6815bc 23 return ((crc >> 8) ^ tcrc) & 0xffff;
fdcc61d3 24}
47cbb2d4 25
26uint16_t crc16(uint8_t const *message, int length, uint16_t remainder, uint16_t polynomial) {
27
28 if (length == 0)
29 return (~remainder);
30
31 for (int byte = 0; byte < length; ++byte) {
32 remainder ^= (message[byte] << 8);
33 for (uint8_t bit = 8; bit > 0; --bit) {
34 if (remainder & 0x8000) {
35 remainder = (remainder << 1) ^ polynomial;
36 } else {
37 remainder = (remainder << 1);
38 }
39 }
40 }
41 return remainder;
42}
43
44uint16_t crc16_ccitt(uint8_t const *message, int length) {
6b6815bc 45 return crc16(message, length, 0xffff, CRC16_POLY_CCITT);
47cbb2d4 46}
ad6219fc 47
a71ece51 48uint16_t crc16_ccitt_kermit(uint8_t const *message, int length) {
6b6815bc 49 return bit_reverse_uint16(crc16(message, length, 0x0000, CRC16_POLY_CCITT));
a71ece51 50}
51uint16_t bit_reverse_uint16 (uint16_t value) {
52 const uint16_t mask0 = 0x5555;
53 const uint16_t mask1 = 0x3333;
54 const uint16_t mask2 = 0x0F0F;
55 const uint16_t mask3 = 0x00FF;
56
57 value = (((~mask0) & value) >> 1) | ((mask0 & value) << 1);
58 value = (((~mask1) & value) >> 2) | ((mask1 & value) << 2);
59 value = (((~mask2) & value) >> 4) | ((mask2 & value) << 4);
60 value = (((~mask3) & value) >> 8) | ((mask3 & value) << 8);
61
62 return value;
63}
Impressum, Datenschutz