]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdanalyse.h
Merge pull request #63 from micolous/log-nonce
[proxmark3-svn] / client / cmdanalyse.h
CommitLineData
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"
df007486 21#include "../common/iso15693tools.h"
16658b1f 22#include "tea.h"
b403c300 23#include "../include/legic_prng.h"
53b3c3e8 24
25int usage_analyse_lcr(void);
26int usage_analyse_checksum(void);
27int usage_analyse_crc(void);
09bb01c7 28int usage_analyse_hid(void);
812513bf 29
30int CmdAnalyse(const char *Cmd);
31int CmdAnalyseLCR(const char *Cmd);
53b3c3e8 32int CmdAnalyseCHKSUM(const char *Cmd);
5558d935 33int CmdAnalyseDates(const char *Cmd);
53b3c3e8 34int CmdAnalyseCRC(const char *Cmd);
16658b1f 35int CmdAnalyseTEASelfTest(const char *Cmd);
b403c300 36int CmdAnalyseLfsr(const char *Cmd);
09bb01c7 37int CmdAnalyseHid(const char *Cmd);
812513bf 38#endif
Impressum, Datenschutz