mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-15 19:59:34 +08:00
32 lines
786 B
C
32 lines
786 B
C
|
//-----------------------------------------------------------------------------
|
||
|
// Copyright (C) 2017 Merlok
|
||
|
//
|
||
|
// 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 core functions
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef EMVCORE_H__
|
||
|
#define EMVCORE_H__
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdint.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <inttypes.h>
|
||
|
#include "util.h"
|
||
|
#include "common.h"
|
||
|
#include "ui.h"
|
||
|
#include "emv/tlv.h"
|
||
|
#include "emv/dump.h"
|
||
|
#include "emv/emv_tags.h"
|
||
|
|
||
|
extern void TLVPrintFromBuffer(uint8_t *data, int datalen);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|
||
|
|