]>
Commit | Line | Data |
---|---|---|
16a372ab | 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 __MIFARECMD_H | |
14 | #define __MIFARECMD_H | |
15 | ||
16 | #include "proxmark3.h" | |
17 | #include "apps.h" | |
18 | #include "util.h" | |
19 | #include "string.h" | |
20 | ||
21 | #include "iso14443crc.h" | |
22 | #include "iso14443a.h" | |
23 | #include "crapto1.h" | |
24 | #include "mifareutil.h" | |
25 | #include "common.h" | |
26 | ||
27 | ||
8556b852 | 28 | #endif |