]> git.zerfleddert.de Git - proxmark3-svn/blob - armsrc/iso14443b.h
Merge pull request #862 from pwpiwi/fix_iclass_sim
[proxmark3-svn] / armsrc / iso14443b.h
1 //-----------------------------------------------------------------------------
2 // Merlok - June 2011
3 // Gerhard de Koning Gans - May 2008
4 // Hagen Fritsch - June 2010
5 //
6 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
7 // at your option, any later version. See the LICENSE.txt file for the text of
8 // the license.
9 //-----------------------------------------------------------------------------
10 // Routines to support ISO 14443 type B.
11 //-----------------------------------------------------------------------------
12
13 #ifndef ISO14443B_H__
14 #define ISO14443B_H__
15
16 #include <stdint.h>
17 #include <stddef.h>
18
19 extern int iso14443b_apdu(uint8_t const *message, size_t message_length, uint8_t *response);
20 extern void iso14443b_setup();
21 extern int iso14443b_select_card();
22 extern void SimulateIso14443bTag(void);
23 extern void ReadSTMemoryIso14443b(uint32_t);
24 extern void SnoopIso14443b(void);
25 extern void SendRawCommand14443B(uint32_t, uint32_t, uint8_t, uint8_t[]);
26
27 #endif /* __ISO14443B_H */
Impressum, Datenschutz