-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResto.java
327 lines (235 loc) · 9.18 KB
/
Resto.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
package pack_resto;
import javacard.framework.APDU;
import javacard.framework.Applet;
import javacard.framework.ISO7816;
import javacard.framework.ISOException;
import javacard.framework.OwnerPIN;
import javacard.framework.Util;
public class JavaResto extends Applet {
// 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 DEBIT =(byte)0x40;
final static byte CONSULTATION =(byte)0x50;
final static byte ADMINISTRATION=(byte)0x60;
//Les constantes
final static short maxBalance = 0x7FFF;
final static byte maxTransactionMontant = 127;
final static byte nbEssaisPIN = (byte)0x03;
final static byte maxTaillePIN = (byte)0x08;
//Les réponses
final static short SW_AUTHENTIFICATION_ECHOUE = 0x6300;
final static short SW_PIN_AUTHENTIFICATION_REQUISE = 0x6301;
final static short SW_PIN_ESSAI_NULL = 0x6302;
final static short SW_INVALID_TRANSACTION_MONTANT = 0x6A83;
final static short SW_MAXIMUM_BALANCE_DEPASSER = 0x6A84;
final static short SW_NEGATIF_BALANCE = 0x6A85;
//Le PIN
OwnerPIN pin;
//La balance
short balance ;
//Informations de personnalisation
byte [] nom,prenom,matricule,filiere,date ;
private JavaResto (byte[] bArray,short bOffset,byte bLength) // Constructeur
{
pin = new OwnerPIN(nbEssaisPIN,maxTaillePIN);
byte PINLong = bArray[bOffset]; // PIN taille
pin.update(bArray, (short)(bOffset+1), PINLong); //Initialisation de PIN
bOffset = (short) (bOffset+PINLong+1);
byte matLong = bArray[bOffset]; // Longueur matricule
matricule = new byte[(short)matLong];
Util.arrayCopy(bArray, (short)(bOffset +1),matricule,(short)0,matLong); //Initialisation de matricule
bOffset = (short) (bOffset+matLong+1);
byte nomLong = bArray[bOffset]; // Longueur nom
nom = new byte[(short)nomLong];
Util.arrayCopy(bArray, (short)(bOffset +1),nom,(short)0,nomLong); //Initialisaton du nom
bOffset = (short) (bOffset+nomLong+1);
byte prenomLong = bArray[bOffset]; // Longueur prénom
prenom = new byte[(short)prenomLong];
Util.arrayCopy(bArray, (short)(bOffset +1),prenom,(short)0,prenomLong); //Initialisation du prénom
bOffset = (short) (bOffset+prenomLong+1);
byte filiereLong = bArray[bOffset]; // Longueur filière
filiere = new byte[(short)filiereLong];
Util.arrayCopy(bArray, (short)(bOffset +1),filiere,(short)0,filiereLong); //Initialisation de la filière
bOffset = (short) (bOffset+filiereLong+1);
byte dateLong = bArray[bOffset]; // Longueur filière
date = new byte[(short)dateLong];
Util.arrayCopy(bArray, (short)(bOffset +1),date,(short)0,dateLong); // Initialisation de la date d'expiration
register(); //Enregistrement de l'applet
}//Fin du constructeur
public static void install(byte[] bArray, short bOffset, byte bLength) //Installation de l'applet
{
new JavaResto(bArray, bOffset, bLength);
}
public boolean select()
{
if ( pin.getTriesRemaining() == 0 ) //Refuser la sélection si le nombre d'essais restants == 0
return false;
return true;
}
public void deselect()
{
pin.reset(); //Réinitialisation des paramétres du PIN
}
public void process(APDU apdu)
{
byte [] buffer = apdu.getBuffer();
if (apdu.isISOInterindustryCLA())
{
if (buffer[ISO7816.OFFSET_INS] == (byte)(0xA4))
{
return;
}
else
{
ISOException.throwIt (ISO7816.SW_CLA_NOT_SUPPORTED);
}
}
if (buffer[ISO7816.OFFSET_CLA] != RESTO_CLA)
{
ISOException.throwIt(ISO7816.SW_CLA_NOT_SUPPORTED);
}
if ( pin.getTriesRemaining() == 0 )
{
ISOException.throwIt(SW_PIN_ESSAI_NULL);
}
if(!pin.isValidated() && buffer[ISO7816.OFFSET_INS] != VERIFY )
{
ISOException.throwIt(SW_PIN_AUTHENTIFICATION_REQUISE);
}
switch(buffer[ISO7816.OFFSET_INS])
{
case ADMINISTRATION :
switch(buffer[ISO7816.OFFSET_P1])
{
case 0x00 :
changePIN(apdu);
return;
case 0x01 :
changeDate(apdu);
return;
default :
ISOException.throwIt(ISO7816.SW_INCORRECT_P1P2);
}
case CONSULTATION :
switch(buffer[ISO7816.OFFSET_P1])
{
case 0x00 :
getBalance(apdu);
return;
case 0x01:
getInfo(apdu,matricule);
return;
case 0x02 :
getInfo(apdu,nom);
return;
case 0x03 :
getInfo(apdu,prenom);
return;
case 0x04 :
getInfo(apdu,filiere);
return;
case 0x05 :
getInfo(apdu,date);
return;
default :
ISOException.throwIt(ISO7816.SW_INCORRECT_P1P2);
}
return;
case DEBIT :
debit(apdu);
return;
case RECHARGE :
recharge(apdu);
return;
case VERIFY :
verify(apdu);
return;
default :
ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
}
} //Fin de la méthode process
public void recharge(APDU apdu)
{
byte [] buffer = apdu.getBuffer();
byte tailleMontant = buffer[ISO7816.OFFSET_LC]; //En byte
byte nbByteLus = (byte)(apdu.setIncomingAndReceive()); //En byte
if((tailleMontant != 1) || (nbByteLus != 1)) // Vérifier que tailleMontant = nbByteLus = 1
{
ISOException.throwIt(ISO7816.SW_WRONG_LENGTH);
}
byte rechargeMontant = buffer[ISO7816.OFFSET_CDATA]; //La valeur à recharger
if((rechargeMontant > maxTransactionMontant) || (rechargeMontant < 0)) //Vérifier que rechargeMontant< 127 et > 0
{
ISOException.throwIt(SW_INVALID_TRANSACTION_MONTANT);
}
if((short)(rechargeMontant + balance ) > (short)maxBalance) //vérifier que la nouvelle balance est < a maxBalance
{
ISOException.throwIt(SW_MAXIMUM_BALANCE_DEPASSER);
}
balance = (short)(balance + rechargeMontant); // Valider la nouvelle balance
}//Fin de la méthode recharge()
private void debit(APDU apdu)
{
byte [] buffer = apdu.getBuffer();
byte tailleMontant = buffer[ISO7816.OFFSET_LC]; //En byte
byte nbByteLus = (byte)(apdu.setIncomingAndReceive()); //En byte
if((tailleMontant != 1) || (nbByteLus != 1)) // Vérifier que tailleMontant = nbByteLus = 1
{
ISOException.throwIt(ISO7816.SW_WRONG_LENGTH);
}
byte debiteMontant = buffer[ISO7816.OFFSET_CDATA];
if((debiteMontant > maxTransactionMontant) || (debiteMontant < 0))
{
ISOException.throwIt(SW_INVALID_TRANSACTION_MONTANT);
}
if ( (short)( balance - debiteMontant ) < (short)0 )
{
ISOException.throwIt(SW_NEGATIF_BALANCE);
}
balance = (short) (balance - debiteMontant);
}// Fin de la méthode debit
public void getBalance(APDU apdu)
{
byte[] buffer = apdu.getBuffer();
short le = apdu.setOutgoing();
if ( le < 2 )
{
ISOException.throwIt(ISO7816.SW_WRONG_LENGTH);
}
apdu.setOutgoingLength((byte)2);
buffer[0] = (byte)(balance >> 8);
buffer[1] = (byte)(balance & 0xFF);
apdu.sendBytes((short)0, (short)2);
}//Fin de la méthode getBalance
private void getInfo(APDU apdu, byte [] tab)
{
byte [] buffer = apdu.getBuffer();
Util.arrayCopyNonAtomic(tab, (short)0, buffer, (short)0,(short)(tab.length));
apdu.setOutgoingAndSend((short)0,(short)(tab.length));
}//Fin de la méthode getInfo
private void verify(APDU apdu)
{
byte[] buffer = apdu.getBuffer();
byte nbByteLus = (byte)(apdu.setIncomingAndReceive());
if ( pin.check(buffer, ISO7816.OFFSET_CDATA,nbByteLus) == false )
{
ISOException.throwIt(SW_AUTHENTIFICATION_ECHOUE);
}
}//Fin de la méthode verify
private void changePIN(APDU apdu)
{
byte[] buffer = apdu.getBuffer();
byte len = (byte)apdu.setIncomingAndReceive();
pin.update(buffer, ISO7816.OFFSET_CDATA, len);
pin.check(buffer, ISO7816.OFFSET_CDATA, len);
}//Fin de la méthode changepin
private void changeDate(APDU apdu)
{
byte[] buffer = apdu.getBuffer();
short len = apdu.setIncomingAndReceive();
Util.arrayCopy(buffer,ISO7816.OFFSET_CDATA ,date,(short)0,len);
}//Fin de la méthode changedate
}