]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdhfemv.h
FIX: lf hitag : Mea culpa, simulation should not have reader_field on. thanks to...
[proxmark3-svn] / client / cmdhfemv.h
CommitLineData
6a1687cc 1//-----------------------------------------------------------------------------
2// Copyright (C) 2014 Peter Fillmore
3// 2017 iceman
4//
5// This code is licensed to you under the terms of the GNU GPL, version 2 or,
6// at your option, any later version. See the LICENSE.txt file for the text of
7// the license.
8//-----------------------------------------------------------------------------
9// High frequency EMV commands
10//-----------------------------------------------------------------------------
11
12#ifndef CMDHFEMV_H__
13#define CMDHFEMV_H__
14
15#include <stdio.h>
16#include <string.h>
17#include "proxmark3.h"
18#include "data.h"
19#include "ui.h"
20#include "cmdparser.h"
21#include "cmdmain.h"
22#include "util.h"
23#include "cmdhf.h" // "hf list"
24
25int CmdHFEmv(const char *Cmd);
26
62cdba05 27int CmdHfEmvTest(const char *Cmd);
28int CmdHfEmvReadRecord(const char *Cmd);
29int CmdHfEmvClone(const char *Cmd);
30int CmdHfEmvTrans(const char *Cmd);
6a1687cc 31int CmdHfEmvGetrng(const char *Cmd);
32int CmdHfEmvELoad(const char *Cmd);
33int CmdHfEmvDump(const char *Cmd);
62cdba05 34int CmdHfEmvSim(const char *Cmd);
6a1687cc 35int CmdHfEmvList(const char *Cmd);
36
62cdba05 37int usage_hf_emv_test(void);
38int usage_hf_emv_readrecord(void);
39int usage_hf_emv_clone(void);
40int usage_hf_emv_transaction(void);
6a1687cc 41int usage_hf_emv_getrnd(void);
42int usage_hf_emv_eload(void);
43int usage_hf_emv_dump(void);
44int usage_hf_emv_sim(void);
45
46#endif
Impressum, Datenschutz