812513bf |
1 | //----------------------------------------------------------------------------- |
b403c300 |
2 | // Copyright (C) 2016 iceman <iceman at ...> |
812513bf |
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" |
905c55de |
21 | #include "iso15693tools.h" // |
22 | #include "iso14443crc.h" // crc 14a |
16658b1f |
23 | #include "tea.h" |
905c55de |
24 | #include "legic_prng.h" |
ea1c1ca6 |
25 | #include "loclass/elite_crack.h" |
53b3c3e8 |
26 | |
27 | int usage_analyse_lcr(void); |
28 | int usage_analyse_checksum(void); |
29 | int usage_analyse_crc(void); |
09bb01c7 |
30 | int usage_analyse_hid(void); |
905c55de |
31 | int usage_analyse_nuid(void); |
812513bf |
32 | |
33 | int CmdAnalyse(const char *Cmd); |
34 | int CmdAnalyseLCR(const char *Cmd); |
53b3c3e8 |
35 | int CmdAnalyseCHKSUM(const char *Cmd); |
5558d935 |
36 | int CmdAnalyseDates(const char *Cmd); |
53b3c3e8 |
37 | int CmdAnalyseCRC(const char *Cmd); |
16658b1f |
38 | int CmdAnalyseTEASelfTest(const char *Cmd); |
b403c300 |
39 | int CmdAnalyseLfsr(const char *Cmd); |
09bb01c7 |
40 | int CmdAnalyseHid(const char *Cmd); |
905c55de |
41 | int CmdAnalyseNuid(const char *Cmd); |
812513bf |
42 | #endif |