I have a problem where my verify command (offline PIN) keeps returning SW = 69 85. I'm using Jaccal in a Java SE app, the card I'm using is a test card so I'm not worried about disclosing the PIN. I've double/triple checked my command and can find nothing wrong. If possible please advise. It looks as follows
Hi,
I have a problem where my verify command (offline PIN) keeps returning SW = 69 85. I'm using Jaccal in a Java SE app, the card I'm using is a test card so I'm not worried about disclosing the PIN. I've double/triple checked my command and can find nothing wrong. If possible please advise. It looks as follows
ISOVerifyChv verify = new ISOVerifyChv("");
verify.setCla((byte) 0x00);
verify.setP1((byte) 0x00);
verify.setP2((byte) 0x80);
verify.setLc((byte) 0x08);
verify.setData(new byte[]{0x02 << 4|0x04, (byte)0x94, (byte)0x94, (byte)0xFF, (byte) 0xfF, (byte) 0xfF, (byte) 0xfF, (byte) 0xfF});
Regards and thanks
Vic