]> git.zerfleddert.de Git - proxmark3-svn/blame - armsrc/iclass.h
fix 'hf iclass reader' and 'hf iclass readblk'
[proxmark3-svn] / armsrc / iclass.h
CommitLineData
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>
ece38ef3 18#include <stdbool.h>
deb965b5 19#include "common.h" // for RAMFUNC
20
21extern void RAMFUNC SnoopIClass(void);
22extern void SimulateIClass(uint32_t arg0, uint32_t arg1, uint32_t arg2, uint8_t *datain);
23extern void ReaderIClass(uint8_t arg0);
24extern void ReaderIClass_Replay(uint8_t arg0, uint8_t *MAC);
25extern void IClass_iso14443A_GetPublic(uint8_t arg0);
ece38ef3 26extern void iClass_Readcheck(uint8_t block, bool use_credit_key);
27extern void iClass_Check(uint8_t *MAC);
deb965b5 28extern void iClass_WriteBlock(uint8_t blockNo, uint8_t *data);
29extern void iClass_ReadBlk(uint8_t blockNo);
deb965b5 30extern void iClass_Dump(uint8_t blockno, uint8_t numblks);
31extern void iClass_Clone(uint8_t startblock, uint8_t endblock, uint8_t *data);
deb965b5 32
33#endif
Impressum, Datenschutz