This repository has been archived by the owner on Mar 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathEac.java
456 lines (381 loc) · 17 KB
/
Eac.java
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
package it.ipzs.nfccardreader.logica;
/** Eac.java è la classe che effettua la lettura dei dati MRTD dal microprocessore **/
public class Eac {
private IsoDep isoDep = null;
static byte[] kSessEnc = null;
static byte[] kSessMac = null;
static byte[] seq = null;
public static Mrz mrz = null;
public List<Byte> dgList = new ArrayList<Byte>();
public byte[] efSod = null;
public byte[] efCVCA = null;
public byte[] efCom = null;
public static Map<Integer, byte[]> mappaDg = null;
private int index = 0;
private static final String TAG = "m.recupero";
//costruttore
public Eac(IsoDep isoDep){
this.isoDep = isoDep;
}
//metodo iniziale per lo scambio delle chiavi di sessione
public void init() throws Exception{
byte[] apduCmd = AppUtil.hexStringToByteArray("00A4040C07A0000002471001");//select di controllo
ApduResponse res = new ApduResponse(isoDep.transceive(apduCmd));
Log.i(TAG,"risposta sw: " + res.getSw());
Log.i(TAG,"risposta full: " + AppUtil.bytesToHex(res.getResponse()));
if(res.getSw().equals("9000")){
Log.i(TAG,"INIT BAC AUTHENTICATION:");
// init BAC auth
byte challenge[] = AppUtil.hexStringToByteArray("0084000008");
ApduResponse apduRes = new ApduResponse(isoDep.transceive(challenge));
if(!apduRes.getSw().equals("9000")){
Log.i(TAG,"Errore nella richiesta di challenge [apdu]:0084000008");
Progressione.testoErrore += "Errore nella richiesta di challenge";
throw new Exception("Errore nella richiesta di challenge [apdu]:0084000008");
}
byte[] rndMrtd = apduRes.getResponse();
byte[] birth = null;
byte[] expire = null;
if(mrz.getDataNascita().contains("/")){
//caso in cui viene persa la connessione con il tag nfc ma è stato già fatto il parsing del DG1, in questo caso
//ho sovrascritto l'mrz...ho cmq i valori delle date yymmgg nel dataString
birth = mrz.getDataNascitaString().getBytes();
expire = mrz.getDataScadenzaString().getBytes();
}
else{
birth = mrz.getDataNascita().getBytes();
expire = mrz.getDataScadenza().getBytes();
}
//concateno i dati: numero documento e le due date
byte[] pn = mrz.getIdCarta().getBytes();
byte seedPartPn[] = AppUtil.appendByte(pn,AppUtil.checkdigit(pn));
byte seedPartBirth[] = AppUtil.appendByte(birth, AppUtil.checkdigit(birth));
byte seedPartExpire[] = AppUtil.appendByte(expire, AppUtil.checkdigit(expire));
byte[] bacSeedData = AppUtil.appendByteArray(seedPartPn, seedPartBirth);
bacSeedData = AppUtil.appendByteArray(bacSeedData, seedPartExpire);//I00000000666011111512030
byte[] bacEnc = AppUtil.getLeft(AppUtil.getSha1(AppUtil.appendByteArray(AppUtil.getLeft(AppUtil.getSha1(bacSeedData), 16),new byte[]{(byte)0x00,0x00,0x00,0x01})),16);
byte[] bacMac = AppUtil.getLeft(AppUtil.getSha1(AppUtil.appendByteArray(AppUtil.getLeft(AppUtil.getSha1(bacSeedData), 16),new byte[]{(byte)0x00,0x00,0x00,0x02})),16);
//genero i byte[] random
byte[] rndIs1 = new byte[8];
AppUtil.getRandomByte(rndIs1);
byte[] kIs = new byte[16];
AppUtil.getRandomByte(kIs);
byte[] eIs1 = Algoritmi.desEnc(bacEnc, AppUtil.appendByteArray(AppUtil.appendByteArray(rndIs1, rndMrtd), kIs));//32byte
byte[] eisMac = Algoritmi.macEnc(bacMac, AppUtil.getIsoPad(eIs1));//8byte
//pronto per la mutua auth
byte apduMutaAuth[] = AppUtil.appendByteArray(eIs1,eisMac);//46byte
byte[] apduMutuaAutenticazione = AppUtil.appendByte(AppUtil.appendByteArray(AppUtil.appendByteArray(new byte[]{0x00,(byte) 0x82,0x00,0x00,0x28},eIs1),eisMac),(byte)0x28);
ApduResponse respMutaAuth = new ApduResponse(isoDep.transceive(apduMutuaAutenticazione));//11byte
if(!respMutaAuth.getSw().equals("9000")){
Log.i(TAG,"Errore sulla mutua auth BAC " + respMutaAuth.getSw());
Progressione.testoErrore += "Errore durante la procedura di autenticazione BAC! Ripetere la scansione. ";
//Progressione.erroreBloccante = true;
throw new Exception("Errore durante la procedura di autenticazione BAC! Ripetere la scansione. " + respMutaAuth.getSw());
}
//
byte[] kIsMac = Algoritmi.macEnc(bacMac, AppUtil.getIsoPad(AppUtil.getLeft(respMutaAuth.getResponse(),32)));
byte[] kIsMac2 = AppUtil.getRight(respMutaAuth.getResponse(),8);
if(!Arrays.equals(kIsMac,kIsMac2)) {
Progressione.testoErrore += "Errore sulla auth dell'MRTD!!!.";
//Progressione.erroreBloccante = true;
throw new Exception("Errore sulla auth dell'MRTD!!!");
}
byte[] decResp = Algoritmi.desDec(bacEnc, AppUtil.getLeft(respMutaAuth.getResponse(),32));
byte[] kMrtd = AppUtil.getRight(decResp,16);
byte[] kSeed = AppUtil.stringXor(kIs, kMrtd);
//parsing chiavi di sessione
kSessMac = AppUtil.getLeft(AppUtil.getSha1( AppUtil.appendByteArray(kSeed,new byte[]{0x00,0x00,0x00,0x02})),16);
kSessEnc = AppUtil.getLeft(AppUtil.getSha1( AppUtil.appendByteArray(kSeed,new byte[]{0x00,0x00,0x00,0x01})),16);
byte[] tmp = AppUtil.getSub(decResp, 4, 4);
byte[] tmp2 = AppUtil.getSub(decResp, 12, 4);
seq = AppUtil.appendByteArray(tmp,tmp2);
Log.i(TAG,"END BAC AUTHENTICATION:");
}
else{
Log.i(TAG,"protocolla SAC");
}
}
//recupero la struttura dei dg, la conservo dentro una mappa
public void readDgs()throws Exception{
Log.i(TAG, "leggo i dg");
mappaDg = new HashMap<Integer, byte[]>();
byte[] efCom = leggiDg(30);
Log.i(TAG, "efcom: => " + AppUtil.bytesToHex(efCom));
Asn1Tag comtag = Asn1Tag.parse(efCom, false);
comtag.checkTag(0x60).Child(0, new byte[]{0x5f, 0x01}).verify("0107".getBytes());
comtag.Child(1, new byte[]{0x5f, 0x36}).verify("040000".getBytes());
byte[] dhList = comtag.Child(2, (byte) 0x5c).getData();
for (byte dhNum : dhList) {
dgList.add(dhNum);
int dgNum = 0;
switch (dhNum) {
case 0x61:
dgNum = new Integer(1);
break;
case 0x75:
dgNum = new Integer(2);
break;
case 0x6b:
dgNum = new Integer(11);
break;
case 0x6e:
dgNum = new Integer(14);
break;
case 0x77:
dgNum = new Integer(29);
break;
}
if (dgNum != 0)
mappaDg.put(dgNum, leggiDg(dgNum));
if(!mappaDg.containsKey(new Integer(29)))
mappaDg.put(new Integer(29), leggiDg(29));
}
}
public void parseDg1()throws Exception{parseDg(new Integer(1));}
public void parseDg11()throws Exception{
if(mappaDg.containsKey(new Integer(11)))
parseDg(new Integer(11));
else
return;
}
public void parseDg2()throws Exception{parseDg(new Integer(2));}
//metodo per il parsing del dg
//numDg: il numero del datagroup da fare il parsing
public void parseDg(int numDg) throws Exception{
Log.i(TAG,"parse il dg: " + numDg);
//progress.setProgress(50, "Parsing DG"+ numDg);
Class tipo = byte[].class;
byte[] argomenti = new byte[1];
argomenti = mappaDg.get(new Integer(numDg));
if(argomenti == null)
throw new Exception("Errore durante la procedura di PARSING DG:"+numDg);
Object classe = Class.forName("it.ipzs.nfccardreader.beanAndUtils.Dg"+numDg).newInstance();
Method m = classe.getClass().getDeclaredMethod("parse", tipo);
Object obj = m.invoke(classe, argomenti);
boolean argomentiDiRitorno = Boolean.parseBoolean(obj.toString());
Log.i(TAG,"terminato il metodo: " + classe.getClass().getCanonicalName()+" con result: " + argomentiDiRitorno);
}
//metodo per la lettura dei dg
//numDg: il numero del datagroup da leggere
public byte[] leggiDg(int numDg) throws Exception{
Log.i(TAG,"Leggo il dg: " + numDg);
byte[] data = new byte[0];
byte[] resp = null;
byte somma = (byte) ((byte) numDg + (byte)0x80);//-126
String hex = AppUtil.bytesToHex( new byte[]{somma});//82
byte[] appo = AppUtil.hexStringToByteArray("0cb0" + hex +"0006");//. ToString("X2") + " 00 06")
byte[] apdu = sm(kSessEnc, kSessMac, appo);// ' read DG
ApduResponse respDg = new ApduResponse(isoDep.transceive(apdu));
if (!respDg.getSw().equals("9000")){
Log.i(TAG,"Errore nella selezione del DG" + numDg + " SW: " + respDg.getSw());
Progressione.testoErrore += "Errore nella selezione del DG:" + numDg;
throw new Exception("Errore nella selezione del DG" + numDg + " SW: " + respDg.getSw());
}
byte[] chunkLen = respSM(kSessEnc, kSessMac, respDg.getResponse());
int maxLen=Asn1Tag.parseLength(chunkLen);
while (data.length < maxLen)
{
int readLen = Math.min(0xe0, maxLen - data.length);//224
byte[] appo2 = AppUtil.appendByte(AppUtil.appendByte(AppUtil.appendByte(AppUtil.hexStringToByteArray("0cb0"),(byte) ((byte) (data.length / 256) & (byte)0x7f)),(byte) (data.length & 0xff)),(byte) readLen);
byte[] apduDg = sm(kSessEnc, kSessMac, appo2);
ApduResponse respDg2 = new ApduResponse(isoDep.transceive(apduDg));// ' read DG
//int readLen = Math.Min(512, maxLen - data.Size);
//sw = sc.Transmit(LongSM(KSessEnc, KSessMac, new ByteArray("0c b0 ").Append((byte)(((byte)(data.Size>>8)) & (byte)0x7f)).Append((byte)(data.Size & 0xff)),null,new byte[] { (byte)(readLen >> 8), (byte)(readLen & 0xff) }, seq), ref resp);// ' read DG
if (!respDg2.getSw().equals("9000")){
Log.i(TAG,"Errore nella lettura del DG" + numDg +" codice errore: " + respDg2.getSw());
throw new Exception("Errore nella lettura del DG" + numDg +" codice errore: " + respDg2.getSw() );
}
byte[] chunk=respSM(kSessEnc, kSessMac, respDg2.getResponse());
data = AppUtil.appendByteArray(data,chunk);
}
return data;
}
public byte[] respSM(byte[] keyEnc, byte[] keySig, byte[] resp) throws Exception {
return respSM(keyEnc, keySig, resp, false);
}
//metodo per la gestione della risposta Secure Message
public byte[] respSM(byte[] keyEnc, byte[] keySig, byte[] resp, boolean odd) throws Exception{
AppUtil.increment(seq);
// cerco il tag 87
setIndex(0);
byte[] encData = null;
byte[] encObj = null;
byte[] dataObj = null;
do
{
if (Byte.compare(resp[index], (byte) 0x99) == 0 )
{
if (Byte.compare(resp[index+1], (byte) 0x02) != 0 )
throw new Exception("Errore nella verifica del SM - lunghezza del DataObject");
dataObj = AppUtil.getSub(resp, index, 4);
setIndex(index,4);//index += 4;
continue;
}
if (Byte.compare(resp[index], (byte) 0x8e) == 0 )
{
byte[] calcMac = Algoritmi.macEnc(keySig, AppUtil.getIsoPad(AppUtil.appendByteArray(AppUtil.appendByteArray(seq,encObj),dataObj)));
setIndex(index,1);//index++;
if (Byte.compare(resp[index], (byte) 0x08) != 0 )
throw new Exception("Errore nella verifica del SM - lunghezza del MAC errata");
setIndex(index,1);//index++;
if (! Arrays.equals(calcMac,AppUtil.getSub(resp,index, 8)))
throw new Exception("Errore nella verifica del SM - MAC non corrispondente");
setIndex(index,8);//index += 8;
continue;
}
if (resp[index] == (byte) 0x87 )
{
if (unsignedToBytes(resp[index+1]) > unsignedToBytes((byte) 0x80) )
{
int lgn = 0;
int llen = unsignedToBytes(resp[index + 1]) - 0x80;
if (llen == 1)
lgn = unsignedToBytes(resp[index + 2]);
if (llen == 2)
lgn = (resp[index + 2] << 8) | resp[index + 3];
encObj = AppUtil.getSub(resp,index, llen + lgn + 2);
encData = AppUtil.getSub(resp,index + llen + 3, lgn - 1); // ' levo il padding indicator
setIndex(index,llen,lgn,2);//index += llen + lgn + 2;
}
else
{
encObj = AppUtil.getSub(resp,index, resp[index + 1] + 2);
encData = AppUtil.getSub(resp,index + 3, resp[index + 1] - 1); // ' levo il padding indicator
setIndex(index,resp[index + 1],2); //index += resp[index + 1] + 2;
}
continue;
}
else
if (Byte.compare(resp[index], (byte) 0x85) == 0 )
{
if (Byte.compare(resp[index+1], (byte) 0x80) > 0 )
{
int lgn = 0;
int llen = resp[index + 1] - 0x80;
if (llen == 1)
lgn = resp[index + 2];
if (llen == 2)
lgn = (resp[index + 2] << 8) | resp[index + 3];
encObj = AppUtil.getSub(resp,index, llen + lgn + 2);
encData = AppUtil.getSub(resp,index + llen + 2, lgn); // ' levo il padding indicator
setIndex(index,llen,lgn,2);//index += llen + lgn + 2;
}
else
{
encObj = AppUtil.getSub(resp,index, resp[index + 1] + 2);
encData = AppUtil.getSub(resp,index + 2, resp[index + 1]);
setIndex(index,resp[index + 1],2); //index += resp[index + 1] + 2;
}
continue;
}
else
throw new Exception("Tag non previsto nella risposta in SM");
//index = index + resp[index + 1] + 1;
}while (index < resp.length);
if (encData != null){
if(odd){
/* byte[] smResp = isoRemove(Algoritmi.desDec(keyEnc, encData));
Asn1Tag tag = Asn1Tag.parse(smResp, false);
return tag.get*/
Log.i(TAG,"caso no previsto");
}
else
return isoRemove(Algoritmi.desDec(keyEnc, encData));
}
return null;
}
public static int unsignedToBytes(byte b) {
return b & 0xFF;
}
public byte[] isoRemove(byte[] data) throws Exception
{
int i;
for (i = data.length - 1; i >= 0; i--)
{
if (data[i] == (byte)0x80)
break;
if (data[i] != 0x00)
throw new Exception("Padding ISO non presente");
}
return AppUtil.getLeft(data, i);
}
//metodo che compone l'apdu da mandare alla carta in secure message
private byte[] sm(byte[] keyEnc, byte[] keyMac, byte[] apdu) throws Exception{
AppUtil.increment(seq);
byte[] calcMac = AppUtil.getIsoPad(AppUtil.appendByteArray(seq, AppUtil.getLeft(apdu,4)));
byte[] smMac;
byte[] dataField = null;
byte[] doob;
if(apdu[4] != 0 && apdu.length > 5){
//encript la parte di dati
byte[] enc = Algoritmi.desEnc(keyEnc, AppUtil.getIsoPad(AppUtil.getSub(apdu, 5, apdu[4])));
if(apdu[1] %2 == 0){
doob = AppUtil.asn1Tag(AppUtil.appendByteArray(new byte[]{0x001},enc),0x87);
}
else
doob = AppUtil.asn1Tag(enc, 0x85);
calcMac = AppUtil.appendByteArray(calcMac,doob);
dataField = AppUtil.appendByteArray(dataField,doob);
}
if (apdu.length == 5 || apdu.length == apdu[4] + 6)
{ // ' se c'è un le
doob = new byte[] {(byte) 0x97,(byte) 0x01, apdu[apdu.length - 1]};
calcMac = AppUtil.appendByteArray(calcMac,doob);
if(dataField == null)
dataField = doob.clone();
else
dataField = AppUtil.appendByteArray(dataField,doob);
}
smMac = Algoritmi.macEnc(keyMac, AppUtil.getIsoPad(calcMac));
//Log.i(TAG,"smMac: " + bytesToHex(smMac));
dataField = AppUtil.appendByteArray(dataField, AppUtil.appendByteArray(new byte[] { (byte)0x8e, 0x08 },smMac));
//Log.i(TAG,"dataField: " + bytesToHex(dataField));
byte[] finale = AppUtil.appendByte(AppUtil.appendByteArray(AppUtil.appendByteArray(AppUtil.getLeft(apdu, 4),new byte[]{(byte)dataField.length}),dataField),(byte)0x00);
//Log.i(TAG,"finale: " + bytesToHex(finale));
return finale;
}
public List<Byte> getDgList() {
return dgList;
}
public void setDgList(List<Byte> dgList) {
this.dgList = dgList;
}
public byte[] getEfSod() {
return efSod;
}
public void setEfSod(byte[] efSod) {
this.efSod = efSod;
}
public byte[] getEfCVCA() {
return efCVCA;
}
public void setEfCVCA(byte[] efCVCA) {
this.efCVCA = efCVCA;
}
public byte[] getEfCom() {
return efCom;
}
public void setEfCom(byte[] efCom) {
this.efCom = efCom;
}
public int getIndex() {
return index;
}
public void setIndex(int... argomenti) {
int tmpIndex = 0;
int tmpSegno = 0;
for(int i=0;i<argomenti.length;i++){
if(Math.signum(argomenti[i]) < 0){
tmpSegno = argomenti[i] & 0xFF;
tmpIndex += tmpSegno;
}
else
tmpIndex += argomenti[i];
//System.out.print("sommo: " + tmpIndex+" , ");
}
this.index = tmpIndex;
}
public static Mrz getMrz() {
return mrz;
}
}