]>
Commit | Line | Data |
---|---|---|
deb965b5 | 1 | //----------------------------------------------------------------------------- |
2 | // Gerhard de Koning Gans - May 2008 | |
3 | // Hagen Fritsch - June 2010 | |
4 | // Gerhard de Koning Gans - May 2011 | |
5 | // Gerhard de Koning Gans - June 2012 - Added iClass card and reader emulation | |
6 | // | |
7 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
8 | // at your option, any later version. See the LICENSE.txt file for the text of | |
9 | // the license. | |
10 | //----------------------------------------------------------------------------- | |
11 | // Routines to support iClass. | |
12 | //----------------------------------------------------------------------------- | |
13 | ||
14 | #ifndef ICLASS_H__ | |
15 | #define ICLASS_H__ | |
16 | ||
17 | #include <stdint.h> | |
18 | #include "common.h" // for RAMFUNC | |
19 | ||
20 | extern void RAMFUNC SnoopIClass(void); | |
21 | extern void SimulateIClass(uint32_t arg0, uint32_t arg1, uint32_t arg2, uint8_t *datain); | |
22 | extern void ReaderIClass(uint8_t arg0); | |
23 | extern void ReaderIClass_Replay(uint8_t arg0, uint8_t *MAC); | |
24 | extern void IClass_iso14443A_GetPublic(uint8_t arg0); | |
25 | extern void iClass_Authentication(uint8_t *MAC); | |
26 | extern void iClass_WriteBlock(uint8_t blockNo, uint8_t *data); | |
27 | extern void iClass_ReadBlk(uint8_t blockNo); | |
28 | extern bool iClass_ReadBlock(uint8_t blockNo, uint8_t *readdata); | |
29 | extern void iClass_Dump(uint8_t blockno, uint8_t numblks); | |
30 | extern void iClass_Clone(uint8_t startblock, uint8_t endblock, uint8_t *data); | |
31 | extern void iClass_ReadCheck(uint8_t blockNo, uint8_t keyType); | |
32 | ||
33 | #endif |