| 1 | //-----------------------------------------------------------------------------\r |
| 2 | // Merlok - June 2011\r |
| 3 | // Gerhard de Koning Gans - May 2008\r |
| 4 | // Hagen Fritsch - June 2010\r |
| 5 | //\r |
| 6 | // This code is licensed to you under the terms of the GNU GPL, version 2 or,\r |
| 7 | // at your option, any later version. See the LICENSE.txt file for the text of\r |
| 8 | // the license.\r |
| 9 | //-----------------------------------------------------------------------------\r |
| 10 | // Routines to support ISO 14443 type A.\r |
| 11 | //-----------------------------------------------------------------------------\r |
| 12 | \r |
| 13 | #ifndef __MIFARECMD_H\r |
| 14 | #define __MIFARECMD_H\r |
| 15 | \r |
| 16 | #include "proxmark3.h"\r |
| 17 | #include "apps.h"\r |
| 18 | #include "util.h"\r |
| 19 | #include "string.h"\r |
| 20 | \r |
| 21 | #include "iso14443crc.h"\r |
| 22 | #include "iso14443a.h"\r |
| 23 | #include "crapto1.h"\r |
| 24 | #include "mifareutil.h"\r |
| 25 | #include "common.h"\r |
| 26 | \r |
| 27 | \r |
| 28 | #endif |