Refactor format of the MyApplet.java file

This commit is contained in:
Manuel Thalmann 2023-11-03 01:33:27 +01:00
parent 6070b53cdf
commit 88dc8bb094

View file

@ -55,6 +55,7 @@ public class MyApplet extends Applet {
public boolean select() {
if (pin.getTriesRemaining() == 0) {
ISOException.throwIt(SW_VERIFICATION_FAILED);
return false;
} else {
return super.select();
@ -86,8 +87,8 @@ public class MyApplet extends Applet {
byte instruction = buffer[ISO7816.OFFSET_INS];
switch (instruction) {
case 0x04:
case 0x02:
case 0x04:
authenticationRequired = !pin.isValidated();
break;
}