-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
506 lines (387 loc) · 13.5 KB
/
Main.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
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
package pfeClient;
import java.util.Scanner;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.IOException;
import java.net.Socket;
import com.sun.javacard.apduio.Apdu;
import com.sun.javacard.apduio.CadT1Client;
import com.sun.javacard.apduio.CadTransportException;
public class Main {
//la classe
final static byte RESTO_CLA = (byte)0x80 ;
//les instructions
final static byte VERIFY = (byte) 0x20;
final static byte RECHARGE = (byte)0x30;
final static byte DEBITE =(byte)0x40;
final static byte CONSULTATION =(byte)0x50;
final static byte ADMINISTRATION=(byte)0x60;
//méthode pour convertire un tableau de byte en String
private static String toString(byte [] tab)
{
String resultat = "" ;
for(int i = 0; i< tab.length;i++)
{
resultat = resultat+tab[i];
}
return resultat ;
} //fin da la méthode toString(byte [] tab)
//méthode pour convertire un tableau de char en String
private static String toString(char [] tab) //Overload
{
String resultat = "" ;
for(int i = 0; i< tab.length;i++)
{
resultat = resultat+tab[i];
}
return resultat ;
} //fin da la méthode toString(char [] tab)
//méthode pour convertire un String en tableau de byte
private static byte[] toByte(String str)
{
byte resultat [] = new byte[str.length()];
for(int i = 0;i<str.length();i++)
{
resultat[i] = (byte)str.charAt(i);
}
return resultat ;
}
//méthode pour convertire un tableau de byte en tableau de char ;
private static char [] byteToChar(byte [] byteArray)
{
char [] resultat = new char[byteArray.length];
for(int i = 0; i < byteArray.length ; i++)
{
resultat[i] = (char)byteArray[i];
}
return resultat;
}
//méthode de traitement des réponses
private static void evalSW(Apdu apdu)
{
int sw = apdu.getStatus();
switch(sw)
{
case 0x9000: System.out.println("Commande réussite");break;
case 0x6300: System.out.println("authentification échouée");break;
case 0x6301: System.out.println("authentification requise");break;
case 0x6302: System.out.println("Nombre d'essai de PIN nulle");break;
case 0x6A83: System.out.println("Motant de transaction invalide");break;
case 0x6A84: System.out.println("La balance maximal dépassé");break;
case 0x6A85: System.out.println("Balance est insuffisante");break;
case 0x6A86: System.out.println("Paramètre non valide");break;
case 0x6E00: System.out.println("La classe de la commande est non supporté");break;
case 0x6D00: System.out.println("Instruction non supporté");break;
case 0x6700: System.out.println("La longueur des données est invalide");break;
}
}
//méthode d'authenitifcation (build verify APDU command)
private static void verify(Apdu apdu,CadT1Client cad,Scanner sc) throws CadTransportException,IOException
{
apdu.command[Apdu.INS] = Main.VERIFY;
apdu.command[Apdu.P1] = 0x00;
apdu.command[Apdu.P2] = 0x00;
System.out.println("Entrez le PIN : ");
String PIN = sc.next();
byte [] pinArray = toByte(PIN);
apdu.setDataIn(pinArray);
cad.exchangeApdu(apdu);
evalSW(apdu);
}//fin de la méthode verify
private static byte [] consultation(byte p1, Apdu apdu, CadT1Client cad) throws CadTransportException,IOException
{
apdu.command[Apdu.INS] = Main.CONSULTATION;
apdu.command[Apdu.P1] = p1;
apdu.command[Apdu.P2] = 0x00;
if(p1 ==(byte)0x00 ) apdu.Le = 2;
cad.exchangeApdu(apdu);
evalSW(apdu);
if (apdu.getStatus() != 0x9000)
{
return null;
}
else
{ byte [] Rep = new byte[apdu.dataOut.length];
Rep = apdu.dataOut ;
return Rep;
}
}//fin de la méthode consultation
private static void recharge(Apdu apdu,CadT1Client cad,Scanner sc) throws CadTransportException,IOException
{
byte [] montant = new byte[1];
System.out.println("Entrez le montant : ");
montant[0] = sc.nextByte() ;
apdu.command[Apdu.INS] = Main.RECHARGE;
apdu.command[Apdu.P1] = 0x00;
apdu.command[Apdu.P2] = 0x00;
apdu.setDataIn(montant);
cad.exchangeApdu(apdu);
evalSW(apdu);
}// fin de la méthode recharge
private static void debite(Apdu apdu,CadT1Client cad,Scanner sc) throws CadTransportException,IOException
{
byte [] montant = new byte[1];
System.out.println("Entrez le montant : ");
montant[0] = sc.nextByte() ;
apdu.command[Apdu.INS] = Main.DEBITE;
apdu.command[Apdu.P1] = 0x00;
apdu.command[Apdu.P2] = 0x00;
apdu.setDataIn(montant);
cad.exchangeApdu(apdu);
evalSW(apdu);
}// fin de la méthode debite
private static void update(byte p1,Apdu apdu,CadT1Client cad,Scanner sc) throws CadTransportException,IOException
{
if(p1 == 0x00)
{
apdu.command[Apdu.INS] = Main.ADMINISTRATION;
apdu.command[Apdu.P1] = p1;
apdu.command[Apdu.P2] = 0x00;
System.out.println("Entrez le nouveau PIN (max 8 chiffres) : ");
String PIN = sc.next();
byte [] pinArray = toByte(PIN);
apdu.setDataIn(pinArray);
cad.exchangeApdu(apdu);
evalSW(apdu);
}
else if(p1 == 0x01)
{
apdu.command[Apdu.INS] = Main.ADMINISTRATION;
apdu.command[Apdu.P1] = p1;
apdu.command[Apdu.P2] = 0x00;
System.out.println("Entrez la nouvelle date (jj/mm/aaaa) :");
String date = sc.next();
byte [] dateArray = toByte(date);
apdu.setDataIn(dateArray);
cad.exchangeApdu(apdu);
evalSW(apdu);
}
else System.out.println("Pramètre invalide");
}
public static void main(String[] args) throws Exception {
/* Connexion a la Javacard */
CadT1Client cad;
Socket sckCarte;
Scanner sc = new Scanner(System.in);
try {
sckCarte = new Socket("localhost", 9025);
sckCarte.setTcpNoDelay(true);
BufferedInputStream input = new BufferedInputStream(sckCarte.getInputStream());
BufferedOutputStream output = new BufferedOutputStream(sckCarte.getOutputStream());
cad = new CadT1Client(input, output);
}
catch (Exception e)
{
System.out.println("Erreur : impossible de se connecter a la Javacard");
sc.close();
return;
}
/* Mise sous tension de la carte */
try {
cad.powerUp();
}
catch (Exception e)
{
System.out.println("Erreur lors de l'envoi de la commande Powerup a la Javacard");
sckCarte.close();
sc.close();
return;
}
/*installation de l'applet */
System.out.println("avez vous déja installé l'applet ?? (o/n)");
String rep = sc.next();
rep = rep.toLowerCase();
char r = rep.charAt(0);
while(r != 'o' && r != 'n')
{
System.out.println("Répond par 'o' ou 'n' ");
rep = sc.next();
rep = rep.toLowerCase();
r = rep.charAt(0);
}
if(r == 'n')
{
/* envoi des information de l'initialisation */
Apdu installApdu = new Apdu();
installApdu.command[Apdu.CLA] = (byte)0x80 ;
installApdu.command[Apdu.INS] = (byte) 0xB8;
installApdu.command[Apdu.P1] = 0x00;
installApdu.command[Apdu.P2] = 0x00;
System.out.println("Entrez la valeur de PIN : ");
String PIN = sc.next();
byte [] pinArray = toByte(PIN);
System.out.println("Entrez le matricule : ");
String matricule = sc.next();
byte [] matriculeArray = toByte(matricule);
System.out.println("Entrez le nom : ");
String nom = sc.next();
byte [] nomArray = toByte(nom);
System.out.println("Entrez le prenom : ");
String prenom = sc.next();
byte [] prenomArray = toByte(prenom);
System.out.println("Entrez la filiere : ");
String filiere = sc.next();
byte [] filiereArray = toByte(filiere);
System.out.println("Entrez la date : ");
String date = sc.next();
byte [] dateArray = toByte(date);
int longAID = 12;
int longInfo = 6 + PIN.length() + matricule.length() + nom.length() +
prenom.length() +filiere.length() + date.length();
byte [] installParam = new byte[longInfo +longAID + 1];
byte [] AID = { 0xb,0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x00, 0x00 };
int offset = 0 ;
System.arraycopy(AID, 0, installParam, offset, AID.length);
offset = offset + 12 ; //
installParam[offset] = (byte)longInfo ;
offset = offset + 1 ;
installParam[offset] = (byte)pinArray.length ;
System.arraycopy(pinArray, 0, installParam, offset+1, pinArray.length);
offset = offset + pinArray.length + 1;
installParam[offset] = (byte)matriculeArray.length ;
System.arraycopy(matriculeArray, 0, installParam, offset+1, matriculeArray.length);
offset = offset + matriculeArray.length + 1;
installParam[offset] = (byte)nomArray.length ;
System.arraycopy(nomArray, 0, installParam, offset+1, nomArray.length);
offset = offset + nomArray.length + 1;
installParam[offset] = (byte)prenomArray.length ;
System.arraycopy(prenomArray, 0, installParam, offset+1, prenomArray.length);
offset = offset + prenomArray.length + 1;
installParam[offset] = (byte)filiereArray.length ;
System.arraycopy(filiereArray, 0, installParam, offset+1, filiereArray.length);
offset = offset + filiereArray.length + 1;
installParam[offset] = (byte)dateArray.length ;
System.arraycopy(dateArray, 0, installParam, offset+1, dateArray.length);
installApdu.setDataIn(installParam);
cad.exchangeApdu(installApdu);
if (installApdu.getStatus() != 0x9000)
{
System.out.println("Erreur lors de l'installation de l'applet " + installApdu.getStatus());
System.exit(1);
}
}
/* Sélection de l'applet */
Apdu selectApdu = new Apdu();
selectApdu.command[Apdu.CLA] = 0x00;
selectApdu.command[Apdu.INS] = (byte) 0xA4;
selectApdu.command[Apdu.P1] = 0x04;
selectApdu.command[Apdu.P2] = 0x00;
byte[] appletAID = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x00, 0x00 };
selectApdu.setDataIn(appletAID);
cad.exchangeApdu(selectApdu);
if (selectApdu.getStatus() != 0x9000)
{
System.out.println("Erreur lors de la sélection de l'applet");
System.exit(1);
}
/* Menu principal */
/* Scanner sc = new Scanner(System.in);*/
boolean fin = false;
while (!fin)
{
System.out.println();
System.out.println("Application client Resto Javacard");
System.out.println("----------------------------");
System.out.println();
System.out.println("A - authentification");
System.out.println("B - consultation de balance");
System.out.println("C - consultation de matricule");
System.out.println("D - consultation de nom");
System.out.println("E - consultation de prenom");
System.out.println("F - consultation de filiere");
System.out.println("G - consultation de date");
System.out.println("H - Recharger la balance");
System.out.println("I - Débiter la balnce");
System.out.println("J - Modifier le PIN");
System.out.println("K - Modifier la date");
System.out.println("L - Quiter ");
System.out.println("*************************");
System.out.println("Votre choix ??");
String choix = sc.next();
choix = choix.toUpperCase();
int c = choix.charAt(0);
while (!(c >= 'A' && c <= 'L'))
{
System.out.println("Choix invalide");
choix = sc.next();
choix = choix.toUpperCase();
c = choix.charAt(0);
}
Apdu apdu = new Apdu();
apdu.command[Apdu.CLA] = Main.RESTO_CLA;
switch(c)
{
case 'A' :
verify(apdu,cad,sc);
break;
case 'B' :
byte [] RepBalance =consultation((byte)0x00,apdu,cad);
if(RepBalance != null){
String Balance = toString(RepBalance);
System.out.println("La balance est : " + Balance); }
break;
case 'C' :
byte [] RepMat = consultation((byte)0x01,apdu,cad);
if(RepMat != null){
char [] CharRepMat = byteToChar(RepMat);
String matricule = toString(CharRepMat);
System.out.println("le matricule est " + matricule );}
break;
case 'D' :
byte [] RepNom = consultation((byte)0x02,apdu,cad);
if(RepNom != null){
char [] CharRepNom = byteToChar(RepNom);
String nom = toString(CharRepNom);
System.out.println("Le nom est " + nom);}
break;
case 'E' :
byte [] RepPrenom = consultation((byte)0x03,apdu,cad);
if(RepPrenom != null){
char [] CharRepPrenom = byteToChar(RepPrenom);
String prenom = toString(CharRepPrenom);
System.out.println("Le prenom est " + prenom);}
break;
case 'F' :
byte [] RepFiliere = consultation((byte)0x04,apdu,cad);
if(RepFiliere != null){
char [] CharRepFiliere = byteToChar(RepFiliere);
String filiere = toString(CharRepFiliere);
System.out.println("La filiere est " + filiere);}
break;
case 'G' :
byte [] RepDate = consultation((byte)0x05,apdu,cad);
if(RepDate != null){
char [] charDate = byteToChar(RepDate);
String date = toString(charDate);
System.out.println("La date est " + date);}
break;
case 'H' :
recharge(apdu,cad,sc);
break;
case 'I' :
debite(apdu,cad,sc);
break;
case 'J' :
update((byte)0x00,apdu,cad,sc);
break;
case 'K' :
update((byte)0x01,apdu,cad,sc);
break;
case 'L' :
fin = true ;
break;
}
}
/* Mise hors tension de la carte */
try
{
cad.powerDown();
sckCarte.close();
}
catch (Exception e)
{
System.out.println("Erreur lors de l'envoi de la commande Powerdown a la Javacard");
return;
}
}//fin de la méthode main
}//fin da la classe Main