]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - client/cmdanalyse.h
FIX: lf hitag : Mea culpa, simulation should not have reader_field on. thanks to...
[proxmark3-svn] / client / cmdanalyse.h
... / ...
CommitLineData
1//-----------------------------------------------------------------------------
2// Copyright (C) 2016 iceman <iceman at ...>
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
19#include "util.h"
20#include "crc.h"
21#include "iso15693tools.h" //
22#include "iso14443crc.h" // crc 14a
23#include "tea.h"
24#include "legic_prng.h"
25#include "loclass/elite_crack.h"
26
27int usage_analyse_lcr(void);
28int usage_analyse_checksum(void);
29int usage_analyse_crc(void);
30int usage_analyse_hid(void);
31int usage_analyse_nuid(void);
32
33int CmdAnalyse(const char *Cmd);
34int CmdAnalyseLCR(const char *Cmd);
35int CmdAnalyseCHKSUM(const char *Cmd);
36int CmdAnalyseDates(const char *Cmd);
37int CmdAnalyseCRC(const char *Cmd);
38int CmdAnalyseTEASelfTest(const char *Cmd);
39int CmdAnalyseLfsr(const char *Cmd);
40int CmdAnalyseHid(const char *Cmd);
41int CmdAnalyseNuid(const char *Cmd);
42#endif
Impressum, Datenschutz