JCSHELL (HOW TO)
Hello,
Iam trying out my hands on some JCShell command
I have an applet with the following
finalstaticbyteCLASS= (byte)0x80;
finalstaticbyteINS_VERIFY = (byte)0x20;
finalstaticbyteCREDIT = (byte)0x30;
finalstaticbyte DEBIT = (byte)0x40;
finalstaticbyteGET_BALANCE = (byte)0x50;
finalstaticbytePIN_SIZE = (byte) 2;
finalstaticbyte[] DEFAULT_PIN ={(byte) 0x12, (byte) 0x34}
The code above gives an hint of what the different values of the APDUs that can be used to (1)verify PIN (2) get balance (3) Credit (4) Debit
For a "an electronic purse application".
Can someone please advice on what exactly the JCShell commands for these four, (4) operations should be.
Regards,

