]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - common/crc16.h
restore #755 reverted after #757 (#761)
[proxmark3-svn] / common / crc16.h
index b7e2824ce9847dd32e02416e0b559560040f675f..8eb4befbcf1d7566cf0d7f8f73c370f29080e0ba 100644 (file)
@@ -1,6 +1,17 @@
-#ifndef CRC16_H__
-#define CRC16_H__
+//-----------------------------------------------------------------------------
+// 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
Impressum, Datenschutz