]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - armsrc/iclass.h
fix 'hf iclass reader' and 'hf iclass readblk'
[proxmark3-svn] / armsrc / iclass.h
index 579773de1905468b5c1685573b6a3631c1a5bed0..9666e8888d7f293017a44c5b00d1af082bfbb71f 100644 (file)
@@ -1,6 +1,33 @@
-#ifndef __ISOICLASS_H
-#define __ISOICLASS_H
-#include "common.h"
+//-----------------------------------------------------------------------------
+// Gerhard de Koning Gans - May 2008
+// Hagen Fritsch - June 2010
+// Gerhard de Koning Gans - May 2011
+// Gerhard de Koning Gans - June 2012 - Added iClass card and reader emulation
+//
+// 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.
+//-----------------------------------------------------------------------------
+// Routines to support iClass.
+//-----------------------------------------------------------------------------
 
+#ifndef ICLASS_H__
+#define ICLASS_H__
 
-#endif /* __ISOICLASS_H */
+#include <stdint.h>
+#include <stdbool.h>
+#include "common.h" // for RAMFUNC
+
+extern void RAMFUNC SnoopIClass(void);
+extern void SimulateIClass(uint32_t arg0, uint32_t arg1, uint32_t arg2, uint8_t *datain);
+extern void ReaderIClass(uint8_t arg0);
+extern void ReaderIClass_Replay(uint8_t arg0, uint8_t *MAC);
+extern void IClass_iso14443A_GetPublic(uint8_t arg0);
+extern void iClass_Readcheck(uint8_t block, bool use_credit_key);
+extern void iClass_Check(uint8_t *MAC);
+extern void iClass_WriteBlock(uint8_t blockNo, uint8_t *data);
+extern void iClass_ReadBlk(uint8_t blockNo);
+extern void iClass_Dump(uint8_t blockno, uint8_t numblks);
+extern void iClass_Clone(uint8_t startblock, uint8_t endblock, uint8_t *data);
+
+#endif
Impressum, Datenschutz