1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
/* $Id: cmdtab.c,v 1.4 2001/07/20 15:51:45 rees Exp $ */
/*
copyright 1999
the regents of the university of michigan
all rights reserved
permission is granted to use, copy, create derivative works
and redistribute this software and such derivative works
for any purpose, so long as the name of the university of
michigan is not used in any advertising or publicity
pertaining to the use or distribution of this software
without specific, written prior authorization. if the
above copyright notice or any other identification of the
university of michigan is included in any copy of any
portion of this software, then the disclaimer below must
also be included.
this software is provided as is, without representation
from the university of michigan as to its fitness for any
purpose, and without warranty by the university of
michigan of any kind, either express or implied, including
without limitation the implied warranties of
merchantability and fitness for a particular purpose. the
regents of the university of michigan shall not be liable
for any damages, including special, indirect, incidental, or
consequential damages, with respect to any claim arising
out of or in connection with the use of the software, even
if it has been or is hereafter advised of the possibility of
such damages.
*/
/*
* Translate from apdu P1 to apdu name
*/
#ifdef __palmos__
#include <Common.h>
#include <System/SysAll.h>
#include <System/Unix/unix_stdio.h>
#include <System/Unix/unix_stdlib.h>
#include <System/Unix/sys_types.h>
#include <string.h>
#undef sprintf
#undef vsprintf
#else
#include <stdio.h>
#endif
static struct cmd {
int ins, inout;
char *name;
} cmdtab[] = {
/* 7816-4 */
{0x0e, 0, "erase binary"},
{0x20, 0, "verify"},
{0x70, 0, "manage channel"},
{0x82, 0, "ext auth"},
{0x84, 1, "get challenge"},
{0x88, 0, "int auth"},
{0xa4, 0, "select"},
{0xb0, 1, "read binary"},
{0xb2, 1, "read record"},
{0xc0, 1, "get response"},
{0xc2, 0, "envelope"},
{0xca, 0, "get data"},
{0xd0, 0, "write binary"},
{0xd2, 0, "write record"},
{0xd6, 0, "update binary"},
{0xda, 0, "put data"},
{0xdc, 0, "update record"},
{0xe2, 0, "append record"},
/* Webcard */
{0xfe, 0, "ip7816"},
/* Cyberflex Access */
{0x04, 0, "invalidate"},
{0x08, 0, "manage instance"},
{0x0a, 0, "manage program"},
{0x0c, 0, "execute method"},
{0x22, 0, "logout all"},
{0x24, 0, "change PIN"},
{0x2a, 0, "verify key"},
{0x2c, 0, "unblock"},
{0x44, 0, "rehabilitate"},
{0xa8, 1, "directory"},
{0xe0, 0, "create"},
{0xe4, 0, "delete"},
{0xfa, 0, "change java atr"},
{0xfc, 0, "change acl"},
/* {0xfe, 1, "get acl"},*/
/* GSM */
{0x26, 0, "disable PIN"},
{0x28, 0, "enable PIN"},
{0x30, 0, "decrease"},
{0x32, 0, "increase"},
{0xf2, 1, "get status"},
/* Visa cash / open platform */
{0x50, 0, "init update"},
{0x80, 0, "install default app"},
#ifdef PAYFLEX
/* Payflex */
{0x52, 0, "credit"},
{0x54, 0, "debit"},
{0x56, 0, "replace debit"},
{0x58, 0, "token debit"},
{0x5a, 0, "token purchase"},
{0x5c, 0, "update currency"},
{0x8a, 0, "cert credit"},
{0x8c, 0, "cert debit"},
{0x8e, 0, "generate diversified key"},
{0xd8, 0, "load key"},
{0xde, 0, "update max amount"},
{0xf4, 0, "load exe"},
#endif /* PAYFLEX */
{0, 0, NULL}
};
char *
sectok_get_ins(int ins)
{
struct cmd *p;
static char name[32];
for (p = &cmdtab[0]; p->name; p++)
if (p->ins == ins)
break;
if (!p->name) {
sprintf(name, "unknown ins %02x", ins);
return name;
}
return p->name;
}
|