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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
|
package cz.crcs.ectester.reader;
import cz.crcs.ectester.applet.ECTesterApplet;
import cz.crcs.ectester.applet.EC_Consts;
import cz.crcs.ectester.reader.ec.EC_Curve;
import javacard.framework.ISO7816;
import javacard.security.KeyPair;
import javax.smartcardio.ResponseAPDU;
import java.util.List;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public abstract class Response {
private ResponseAPDU resp;
private long time;
private short[] sws;
private int numSW = 0;
private byte[][] params;
//TODO replace params with EC_Data?
private boolean success = true;
protected Response(ResponseAPDU response, long time) {
this.resp = response;
this.time = time;
}
protected void parse(int numSW, int numParams) {
this.numSW = numSW;
this.sws = new short[numSW];
byte[] data = resp.getData();
int offset = 0;
//parse SWs in response
for (int i = 0; i < numSW; ++i) {
if (getLength() >= (offset + 2)) {
short sw = Util.getShort(data, offset);
offset += 2;
sws[i] = sw;
if (sw != ISO7816.SW_NO_ERROR) {
success = false;
}
} else {
success = false;
}
}
if ((short) resp.getSW() != ISO7816.SW_NO_ERROR)
success = false;
//try to parse numParams..
params = new byte[numParams][];
for (int i = 0; i < numParams; i++) {
if (data.length - offset < 2) {
success = false;
break;
}
short paramLength = Util.getShort(data, offset);
offset += 2;
if (data.length < offset + paramLength) {
success = false;
break;
}
params[i] = new byte[paramLength];
System.arraycopy(data, offset, params[i], 0, paramLength);
offset += paramLength;
}
}
public ResponseAPDU getAPDU() {
return resp;
}
public long getDuration() {
return time;
}
public short getNaturalSW() {
return (short) resp.getSW();
}
public short getSW(int index) {
return sws[index];
}
public int getNumSW() {
return numSW;
}
public boolean hasParam(int index) {
return params.length >= index + 1 && params[index] != null;
}
public int getParamLength(int index) {
return params[index].length;
}
public byte[] getParam(int index) {
return params[index];
}
public byte[][] getParams() {
return params;
}
public int getLength() {
return resp.getNr();
}
public boolean successful() {
return this.success;
}
@Override
public abstract String toString();
public String toString(String inner) {
StringBuilder suffix = new StringBuilder();
for (int j = 0; j < getNumSW(); ++j) {
short sw = getSW(j);
if (sw != 0) {
suffix.append(" ").append(Util.getSWString(sw));
}
}
if (suffix.length() == 0) {
suffix.append(" [").append(Util.getSW(getNaturalSW())).append("]");
}
return String.format("%-62s:%4d ms : %s", inner, time / 1000000, suffix);
}
public static String toString(List<Response> responses) {
return toString(responses, null);
}
public static String toString(List<Response> responses, String prefix) {
if (prefix != null)
prefix += " | ";
StringBuilder out = new StringBuilder();
for (int i = 0; i < responses.size(); ++i) {
Response r = responses.get(i);
if (prefix != null)
out.append(prefix);
String message = r.toString();
out.append(message);
if (i < responses.size() - 1) {
out.append("\n");
}
}
return out.toString();
}
/**
*
*/
public static class Allocate extends Response {
private byte keyPair;
private short keyLength;
private byte keyClass;
protected Allocate(ResponseAPDU response, long time, byte keyPair, short keyLength, byte keyClass) {
super(response, time);
this.keyPair = keyPair;
this.keyLength = keyLength;
this.keyClass = keyClass;
int pairs = 0;
if ((keyPair & ECTesterApplet.KEYPAIR_LOCAL) != 0) pairs++;
if ((keyPair & ECTesterApplet.KEYPAIR_REMOTE) != 0) pairs++;
parse(pairs, 0);
}
@Override
public String toString() {
String field = keyClass == KeyPair.ALG_EC_FP ? "ALG_EC_FP" : "ALG_EC_F2M";
String key;
if (keyPair == ECTesterApplet.KEYPAIR_BOTH) {
key = "both keypairs";
} else {
key = ((keyPair == ECTesterApplet.KEYPAIR_LOCAL) ? "local" : "remote") + " keypair";
}
return super.toString(String.format("Allocated %s %db %s", key, keyLength, field));
}
}
/**
*
*/
public static class Clear extends Response {
private byte keyPair;
protected Clear(ResponseAPDU response, long time, byte keyPair) {
super(response, time);
this.keyPair = keyPair;
int pairs = 0;
if ((keyPair & ECTesterApplet.KEYPAIR_LOCAL) != 0) pairs++;
if ((keyPair & ECTesterApplet.KEYPAIR_REMOTE) != 0) pairs++;
parse(pairs, 0);
}
@Override
public String toString() {
String key;
if (keyPair == ECTesterApplet.KEYPAIR_BOTH) {
key = "both keypairs";
} else {
key = ((keyPair == ECTesterApplet.KEYPAIR_LOCAL) ? "local" : "remote") + " keypair";
}
return super.toString(String.format("Cleared %s", key));
}
}
/**
*
*/
public static class Set extends Response {
private byte keyPair;
private byte curve;
private short parameters;
protected Set(ResponseAPDU response, long time, byte keyPair, byte curve, short parameters) {
super(response, time);
this.keyPair = keyPair;
this.curve = curve;
this.parameters = parameters;
int pairs = 0;
if ((keyPair & ECTesterApplet.KEYPAIR_LOCAL) != 0) pairs++;
if ((keyPair & ECTesterApplet.KEYPAIR_REMOTE) != 0) pairs++;
parse(pairs, 0);
}
@Override
public String toString() {
String name;
switch (curve) {
case EC_Consts.CURVE_default:
name = "default";
break;
case EC_Consts.CURVE_external:
name = "external";
break;
default:
name = "custom";
break;
}
String what = "";
if (parameters == EC_Consts.PARAMETERS_DOMAIN_F2M || parameters == EC_Consts.PARAMETERS_DOMAIN_FP) {
what = "curve";
} else if (parameters == EC_Consts.PARAMETER_W) {
what = "pubkey";
} else if (parameters == EC_Consts.PARAMETER_S) {
what = "privkey";
} else if (parameters == EC_Consts.PARAMETERS_KEYPAIR) {
what = "keypair";
}
String pair;
if (keyPair == ECTesterApplet.KEYPAIR_BOTH) {
pair = "both keypairs";
} else {
pair = ((keyPair == ECTesterApplet.KEYPAIR_LOCAL) ? "local" : "remote") + " keypair";
}
return super.toString(String.format("Set %s %s parameters on %s", name, what, pair));
}
}
/**
*
*/
public static class Corrupt extends Response {
private byte keyPair;
private byte key;
private short params;
private byte corruption;
protected Corrupt(ResponseAPDU response, long time, byte keyPair, byte key, short params, byte corruption) {
super(response, time);
this.keyPair = keyPair;
this.key = key;
this.params = params;
this.corruption = corruption;
int pairs = 0;
if ((keyPair & ECTesterApplet.KEYPAIR_LOCAL) != 0) pairs++;
if ((keyPair & ECTesterApplet.KEYPAIR_REMOTE) != 0) pairs++;
parse(pairs, 0);
}
@Override
public String toString() {
String corrupt = Util.getCorruption(corruption);
String pair;
if (keyPair == ECTesterApplet.KEYPAIR_BOTH) {
pair = "both keypairs";
} else {
pair = ((keyPair == ECTesterApplet.KEYPAIR_LOCAL) ? "local" : "remote") + " keypair";
}
return super.toString(String.format("Corrupted params of %s, %s", pair, corrupt));
}
}
/**
*
*/
public static class Generate extends Response {
private byte keyPair;
protected Generate(ResponseAPDU response, long time, byte keyPair) {
super(response, time);
this.keyPair = keyPair;
int generated = 0;
if ((keyPair & ECTesterApplet.KEYPAIR_LOCAL) != 0) generated++;
if ((keyPair & ECTesterApplet.KEYPAIR_REMOTE) != 0) generated++;
parse(generated, 0);
}
@Override
public String toString() {
String key;
if (keyPair == ECTesterApplet.KEYPAIR_BOTH) {
key = "both keypairs";
} else {
key = ((keyPair == ECTesterApplet.KEYPAIR_LOCAL) ? "local" : "remote") + " keypair";
}
return super.toString(String.format("Generated %s", key));
}
}
/**
*
*/
public static class Export extends Response {
private byte keyPair;
private byte key;
private short parameters;
protected Export(ResponseAPDU response, long time, byte keyPair, byte key, short parameters) {
super(response, time);
this.keyPair = keyPair;
this.key = key;
this.parameters = parameters;
int exported = 0;
if ((keyPair & ECTesterApplet.KEYPAIR_LOCAL) != 0) exported++;
if ((keyPair & ECTesterApplet.KEYPAIR_REMOTE) != 0) exported++;
int keys = 0;
if ((key & EC_Consts.KEY_PUBLIC) != 0) keys++;
if ((key & EC_Consts.KEY_PRIVATE) != 0) keys++;
int paramCount = 0;
short mask = EC_Consts.PARAMETER_FP;
while (mask <= EC_Consts.PARAMETER_K) {
if ((mask & parameters) != 0) {
paramCount++;
}
mask = (short) (mask << 1);
}
int other = 0;
if ((key & EC_Consts.KEY_PUBLIC) != 0 && (parameters & EC_Consts.PARAMETER_W) != 0) other++;
if ((key & EC_Consts.KEY_PRIVATE) != 0 && (parameters & EC_Consts.PARAMETER_S) != 0) other++;
parse(exported, exported * keys * paramCount + exported * other);
}
private int getIndex(byte keyPair, short param) {
byte pair = ECTesterApplet.KEYPAIR_LOCAL;
int index = 0;
while (pair <= ECTesterApplet.KEYPAIR_REMOTE) {
short mask = EC_Consts.PARAMETER_FP;
while (mask <= EC_Consts.PARAMETER_S) {
if (pair == keyPair && param == mask) {
return index;
}
if ((parameters & mask) != 0 && (pair & keyPair) != 0) {
if (mask == EC_Consts.PARAMETER_W) {
if ((key & EC_Consts.KEY_PUBLIC) != 0)
index++;
} else if (mask == EC_Consts.PARAMETER_S) {
if ((key & EC_Consts.KEY_PRIVATE) != 0)
index++;
} else {
index++;
}
}
mask = (short) (mask << 1);
}
pair = (byte) (pair << 1);
}
return -1;
}
public boolean hasParameters(byte keyPair, short params) {
if ((keyPair & this.keyPair) == 0 || (params ^ parameters) != 0) {
return false;
}
short param = EC_Consts.PARAMETER_FP;
while (param <= EC_Consts.PARAMETER_S) {
short masked = (short) (param & params);
if (masked != 0 && !hasParameter(keyPair, masked)) {
return false;
}
param = (short) (param << 1);
}
return true;
}
public boolean hasParameter(byte keyPair, short param) {
if ((keyPair & this.keyPair) == 0 || (parameters & param) == 0) {
return false;
}
int index = getIndex(keyPair, param);
return index != -1 && hasParam(index);
}
public byte[] getParameter(byte keyPair, short param) {
return getParam(getIndex(keyPair, param));
}
@Override
public String toString() {
String source;
if (key == EC_Consts.KEY_BOTH) {
source = "both keys";
} else {
source = ((key == EC_Consts.KEY_PUBLIC) ? "public" : "private") + " key";
}
String pair;
if (keyPair == ECTesterApplet.KEYPAIR_BOTH) {
pair = "both keypairs";
} else {
pair = ((keyPair == ECTesterApplet.KEYPAIR_LOCAL) ? "local" : "remote") + " keypair";
}
return super.toString(String.format("Exported params from %s of %s", source, pair));
}
}
/**
*
*/
public static class ECDH extends Response {
private byte pubkey;
private byte privkey;
private byte export;
private short corruption;
private byte type;
protected ECDH(ResponseAPDU response, long time, byte pubkey, byte privkey, byte export, short corruption, byte type) {
super(response, time);
this.pubkey = pubkey;
this.privkey = privkey;
this.export = export;
this.corruption = corruption;
this.type = type;
parse(1, (export == ECTesterApplet.EXPORT_TRUE) ? 1 : 0);
}
public boolean hasSecret() {
return hasParam(0);
}
public byte[] getSecret() {
return getParam(0);
}
public int secretLength() {
return getParamLength(0);
}
@Override
public String toString() {
String algo = Util.getKA(type);
String pub = pubkey == ECTesterApplet.KEYPAIR_LOCAL ? "local" : "remote";
String priv = privkey == ECTesterApplet.KEYPAIR_LOCAL ? "local" : "remote";
String validity;
if (corruption == EC_Consts.CORRUPTION_NONE) {
validity = "unchanged";
} else {
validity = Util.getCorruption(corruption);
}
return super.toString(String.format("%s of %s pubkey and %s privkey(%s point)", algo, pub, priv, validity));
}
}
/**
*
*/
public static class ECDSA extends Response {
private byte keyPair;
private byte export;
private byte[] raw;
protected ECDSA(ResponseAPDU response, long time, byte keyPair, byte export, byte[] raw) {
super(response, time);
this.keyPair = keyPair;
this.export = export;
this.raw = raw;
parse(1, (export == ECTesterApplet.EXPORT_TRUE) ? 1 : 0);
}
public boolean hasSignature() {
return hasParam(0);
}
public byte[] getSignature() {
return getParam(0);
}
@Override
public String toString() {
String key = keyPair == ECTesterApplet.KEYPAIR_LOCAL ? "local" : "remote";
String data = raw == null ? "random" : "provided";
return super.toString(String.format("ECDSA with %s keypair(%s data)", key, data));
}
}
/**
*
*/
public static class Cleanup extends Response {
protected Cleanup(ResponseAPDU response, long time) {
super(response, time);
parse(1, 0);
}
@Override
public String toString() {
return super.toString("Requested JCSystem object deletion");
}
}
/**
*
*/
public static class Support extends Response {
protected Support(ResponseAPDU response, long time) {
super(response, time);
parse(3, 0);
}
@Override
public String toString() {
return super.toString("Support of ECDH, ECDHC, ECDSA");
}
}
}
|