| 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 A. |
| 11 | //----------------------------------------------------------------------------- |
| 12 | |
| 13 | #ifndef __ISO14443B_H |
| 14 | #define __ISO14443B_H |
| 15 | #include "common.h" |
| 16 | |
| 17 | int iso14443b_apdu(uint8_t const *message, size_t message_length, uint8_t *response); |
| 18 | void iso14443b_setup(); |
| 19 | int iso14443b_select_card(); |
| 20 | |
| 21 | #endif /* __ISO14443B_H */ |