]> git.zerfleddert.de Git - proxmark3-svn/blob - common/iso14443crc.h
91c6ae1ec38b299fc0ee8b85edff4f066c857ede
[proxmark3-svn] / common / iso14443crc.h
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 // ISO14443 CRC calculation code.
7 //-----------------------------------------------------------------------------
8
9 #ifndef __ISO14443CRC_H
10 #define __ISO14443CRC_H
11
12 //-----------------------------------------------------------------------------
13 // Routines to compute the CRCs (two different flavours, just for confusion)
14 // required for ISO 14443, swiped directly from the spec.
15 //-----------------------------------------------------------------------------
16 #define CRC_14443_A 0x6363 /* ITU-V.41 */
17 #define CRC_14443_B 0xFFFF /* ISO/IEC 13239 (formerly ISO/IEC 3309) */
18
19 void ComputeCrc14443(int CrcType,
20 unsigned char *Data, int Length,
21 unsigned char *TransmitFirst,
22 unsigned char *TransmitSecond);
23
24 #endif
Impressum, Datenschutz