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.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// APDU status bytes information
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef APDUINFO_H__
|
|
|
|
#define APDUINFO_H__
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
#define APDUCODE_TYPE_NONE 0
|
|
|
|
#define APDUCODE_TYPE_INFO 1
|
|
|
|
#define APDUCODE_TYPE_WARNING 2
|
|
|
|
#define APDUCODE_TYPE_ERROR 3
|
|
|
|
#define APDUCODE_TYPE_SECURITY 4
|
2017-11-11 03:08:28 +08:00
|
|
|
|
|
|
|
typedef struct {
|
2019-03-10 06:35:06 +08:00
|
|
|
const char *ID;
|
|
|
|
const uint8_t Type;
|
|
|
|
const char *Description;
|
2017-11-11 03:08:28 +08:00
|
|
|
} APDUCode;
|
2019-03-09 15:59:13 +08:00
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
extern const APDUCode *const GetAPDUCode(uint8_t sw1, uint8_t sw2);
|
|
|
|
extern const char *GetAPDUCodeDescription(uint8_t sw1, uint8_t sw2);
|
2017-11-11 03:08:28 +08:00
|
|
|
|
|
|
|
#endif
|