I'm trying to send a VERIFY (pin) command using javax.smartcardio
API. My Pin code is 12345678.
Based on some examples I've found on the net, I've tried with this APDU:
00 20 00 83 08 01 02 03 04 05 06 07 08
but the result is:
69 84 (reference data invalid)
.
I've tried also with:
00 20 00 83 08 12 34 56 78
But I still get the same error.
According to my SmartCart specifications, the card has support for:
I'm a bit desperate as I cannot find a way out. Can you suggest me some changes to my APDU or even a completely different approach (another library or language to connect with my Smart Card)?
Since your card is ISO 7816, please refer the APDU from the following link section 6.12.
What you need to do is:
00 20 00 81 00
00 20 00 81 08 31 32 33 34 35 36 37 38
.