812513bf |
1 | //----------------------------------------------------------------------------- |
2 | // Copyright (C) 2010 iZsh <izsh at fail0verflow.com> |
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 | // Data and Graph commands |
9 | //----------------------------------------------------------------------------- |
10 | |
11 | #ifndef CMDANALYSE_H__ |
12 | #define CMDANALYSE_H__ |
13 | |
14 | #include <stdlib.h> //size_t |
15 | #include <string.h> |
16 | #include "cmdmain.h" |
17 | #include "proxmark3.h" |
18 | #include "ui.h" // PrintAndLog |
53b3c3e8 |
19 | #include "util.h" |
20 | #include "crc.h" |
df007486 |
21 | #include "../common/iso15693tools.h" |
16658b1f |
22 | #include "tea.h" |
53b3c3e8 |
23 | |
24 | int usage_analyse_lcr(void); |
25 | int usage_analyse_checksum(void); |
26 | int usage_analyse_crc(void); |
812513bf |
27 | |
28 | int CmdAnalyse(const char *Cmd); |
29 | int CmdAnalyseLCR(const char *Cmd); |
53b3c3e8 |
30 | int CmdAnalyseCHKSUM(const char *Cmd); |
5558d935 |
31 | int CmdAnalyseDates(const char *Cmd); |
53b3c3e8 |
32 | int CmdAnalyseCRC(const char *Cmd); |
16658b1f |
33 | int CmdAnalyseTEASelfTest(const char *Cmd); |
812513bf |
34 | #endif |