]>
Commit | Line | Data |
---|---|---|
9206d3b0 | 1 | //------------------------------------------------------------------------------ |
2 | // Peter Fillmore -2012 | |
3 | // Based off MIFARECMD code | |
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 | // Routines to support EMV Transactions. | |
9 | //----------------------------------------------------------------------------- | |
10 | ||
11 | #ifndef __EMVCMD_H | |
12 | #define __EMVCMD_H | |
13 | ||
14 | #include "proxmark3.h" | |
15 | #include "apps.h" | |
16 | #include "util.h" | |
17 | #include "string.h" | |
18 | ||
19 | #include "iso14443crc.h" | |
20 | #include "iso14443a.h" | |
21 | #include "common.h" | |
22 | #include "emvutil.h" | |
23 | #include "emvcard.h" | |
24 | ||
25 | #define VISA_DCVV 0 | |
26 | #define VISA_CVN17 1 | |
27 | #define VISA_FDDA 2 | |
28 | #define VISA_EMV 3 | |
29 | ||
30 | #define MASTERCARD_MSR 0 | |
31 | #define MASTERCARD_MCHIP 1 | |
32 | #endif |