f38a1528 |
1 | //----------------------------------------------------------------------------- |
2 | // Copyright (C) 2012 nuit |
3 | // |
4 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, |
5 | // at your option, any later version. See the LICENSE.txt file for the text of |
6 | // the license. |
7 | //----------------------------------------------------------------------------- |
8 | // High frequency MIFARE DESfire commands |
9 | //----------------------------------------------------------------------------- |
10 | |
11 | #ifndef CMDHFDES_H__ |
12 | #define CMDHFDES_H__ |
13 | |
14 | #include <stdio.h> |
15 | #include <stdlib.h> |
16 | #include <string.h> |
17 | #include <ctype.h> |
18 | #include "proxmark3.h" |
19 | #include "data.h" |
20 | #include "ui.h" |
21 | #include "cmdparser.h" |
22 | #include "common.h" |
23 | #include "util.h" |
24 | int CmdHFDES(const char *Cmd); |
25 | int CmdHFDESReader(const char *Cmd); |
26 | int CmdHFDESDbg(const char *Cmd); |
27 | #endif |