proxmark3/client/emv/cmdemv.h

41 lines
1.1 KiB
C
Raw Normal View History

2017-11-25 03:29:26 +01:00
//-----------------------------------------------------------------------------
// Copyright (C) 2017 Merlok
2017-12-05 21:07:03 +01:00
// modified 2017 iceman
2017-11-25 03:29:26 +01:00
// 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.
//-----------------------------------------------------------------------------
// EMV commands
//-----------------------------------------------------------------------------
#ifndef CMDEMV_H__
#define CMDEMV_H__
#include <stdio.h>
#include <stdlib.h>
#include <inttypes.h>
#include <string.h>
2017-12-04 21:18:08 +01:00
#include <ctype.h>
2017-11-25 03:29:26 +01:00
#include "proxmark3.h"
#include "ui.h"
#include "cmdparser.h"
#include "common.h"
#include "util.h"
#include "util_posix.h"
#include "cmdmain.h"
#include "emvcore.h"
#include "apduinfo.h"
2018-12-28 16:40:53 +02:00
#include "emv_roca.h"
2017-11-25 03:29:26 +01:00
2018-12-03 18:16:25 +02:00
int CmdEMV(const char *Cmd);
2017-11-25 03:29:26 +01:00
2018-12-03 18:16:25 +02:00
extern int CmdEMVSelect(const char *cmd);
extern int CmdEMVSearch(const char *cmd);
extern int CmdEMVPPSE(const char *cmd);
extern int CmdEMVExec(const char *cmd);
extern int CmdEMVGetrng(const char *Cmd);
extern int CmdEMVList(const char *Cmd);
extern int CmdEMVRoca(const char *Cmd);
2017-11-25 03:29:26 +01:00
2018-12-03 18:16:25 +02:00
#endif