]>
git.zerfleddert.de Git - proxmark3-svn/blob - armsrc/iso14443b.h
1 //-----------------------------------------------------------------------------
3 // Gerhard de Koning Gans - May 2008
4 // Hagen Fritsch - June 2010
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
9 //-----------------------------------------------------------------------------
10 // Routines to support ISO 14443 type B.
11 //-----------------------------------------------------------------------------
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[]);
27 #endif /* __ISO14443B_H */