mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
ADD: 'hf emv' - forgot to add some file
This commit is contained in:
parent
2e8d938bef
commit
6a1687cc3e
6 changed files with 294 additions and 21 deletions
40
client/cmdhfemv.h
Normal file
40
client/cmdhfemv.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (C) 2014 Peter Fillmore
|
||||
// 2017 iceman
|
||||
//
|
||||
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
||||
// at your option, any later version. See the LICENSE.txt file for the text of
|
||||
// the license.
|
||||
//-----------------------------------------------------------------------------
|
||||
// High frequency EMV commands
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#ifndef CMDHFEMV_H__
|
||||
#define CMDHFEMV_H__
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "proxmark3.h"
|
||||
#include "data.h"
|
||||
#include "ui.h"
|
||||
#include "cmdparser.h"
|
||||
#include "cmdmain.h"
|
||||
#include "util.h"
|
||||
#include "cmdhf.h" // "hf list"
|
||||
|
||||
int CmdHFEmv(const char *Cmd);
|
||||
|
||||
int CmdHfEmvTransaction(const char *Cmd);
|
||||
int CmdHfEmvGetrng(const char *Cmd);
|
||||
int CmdHfEmvELoad(const char *Cmd);
|
||||
int CmdHfEmvDump(const char *Cmd);
|
||||
//int CmdHfEmvSim(const char *Cmd);
|
||||
int CmdHfEmvList(const char *Cmd);
|
||||
|
||||
int usage_hf_emv_trans(void);
|
||||
int usage_hf_emv_getrnd(void);
|
||||
int usage_hf_emv_eload(void);
|
||||
int usage_hf_emv_dump(void);
|
||||
int usage_hf_emv_sim(void);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue