]> git.zerfleddert.de Git - proxmark3-svn/blame - armsrc/iclass.h
Merge branch 'master' into fix_iclass_sim
[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>
18#include "common.h" // for RAMFUNC
19
20extern void RAMFUNC SnoopIClass(void);
21extern void SimulateIClass(uint32_t arg0, uint32_t arg1, uint32_t arg2, uint8_t *datain);
22extern void ReaderIClass(uint8_t arg0);
23extern void ReaderIClass_Replay(uint8_t arg0, uint8_t *MAC);
24extern void IClass_iso14443A_GetPublic(uint8_t arg0);
25extern void iClass_Authentication(uint8_t *MAC);
26extern void iClass_WriteBlock(uint8_t blockNo, uint8_t *data);
27extern void iClass_ReadBlk(uint8_t blockNo);
deb965b5 28extern void iClass_Dump(uint8_t blockno, uint8_t numblks);
29extern void iClass_Clone(uint8_t startblock, uint8_t endblock, uint8_t *data);
deb965b5 30
31#endif
Impressum, Datenschutz