2017-11-11 03:08:28 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// 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.
|
|
|
|
//-----------------------------------------------------------------------------
|
2017-11-25 10:28:02 +08:00
|
|
|
// EMV core functionality
|
2017-11-11 03:08:28 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef EMVCORE_H__
|
|
|
|
#define EMVCORE_H__
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <inttypes.h>
|
2017-11-25 10:28:02 +08:00
|
|
|
#include <string.h>
|
2017-11-11 03:08:28 +08:00
|
|
|
#include "util.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "ui.h"
|
2017-11-25 10:28:02 +08:00
|
|
|
#include "cmdhf14a.h"
|
|
|
|
#include "emv/apduinfo.h"
|
2017-11-11 03:08:28 +08:00
|
|
|
#include "emv/tlv.h"
|
2017-11-25 10:28:02 +08:00
|
|
|
#include "emv/dol.h"
|
2017-11-11 03:08:28 +08:00
|
|
|
#include "emv/dump.h"
|
|
|
|
#include "emv/emv_tags.h"
|
|
|
|
|
2017-11-25 10:28:02 +08:00
|
|
|
#define APDU_RES_LEN 260
|
|
|
|
#define APDU_AID_LEN 50
|
|
|
|
|
2017-11-11 03:08:28 +08:00
|
|
|
extern void TLVPrintFromBuffer(uint8_t *data, int datalen);
|
2017-11-25 10:28:02 +08:00
|
|
|
extern void TLVPrintFromTLV(struct tlvdb *tlv);
|
|
|
|
extern void TLVPrintAIDlistFromSelectTLV(struct tlvdb *tlv);
|
|
|
|
|
|
|
|
extern void SetAPDULogging(bool logging);
|
|
|
|
|
|
|
|
// search application
|
|
|
|
extern int EMVSearchPSE(bool ActivateField, bool LeaveFieldON, bool decodeTLV, struct tlvdb *tlv);
|
|
|
|
extern int EMVSearch(bool ActivateField, bool LeaveFieldON, bool decodeTLV, struct tlvdb *tlv);
|
|
|
|
extern int EMVSelectPSE(bool ActivateField, bool LeaveFieldON, uint8_t PSENum, uint8_t *Result, size_t MaxResultLen, size_t *ResultLen, uint16_t *sw);
|
|
|
|
extern int EMVSelect(bool ActivateField, bool LeaveFieldON, uint8_t *AID, size_t AIDLen, uint8_t *Result, size_t MaxResultLen, size_t *ResultLen, uint16_t *sw, struct tlvdb *tlv);
|
|
|
|
// select application
|
|
|
|
extern int EMVSelectApplication(struct tlvdb *tlv, uint8_t *AID, size_t *AIDlen);
|
|
|
|
// Get Processing Options
|
|
|
|
extern int EMVGPO(bool LeaveFieldON, uint8_t *PDOL, size_t PDOLLen, uint8_t *Result, size_t MaxResultLen, size_t *ResultLen, uint16_t *sw, struct tlvdb *tlv);
|
|
|
|
extern int EMVReadRecord(bool LeaveFieldON, uint8_t SFI, uint8_t SFIrec, uint8_t *Result, size_t MaxResultLen, size_t *ResultLen, uint16_t *sw, struct tlvdb *tlv);
|
2017-11-11 03:08:28 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|