Reputation: 17
I've developed Java applet for old existing system. And I found the non ISO7816 apdu standard. Cla:0x80 Ins :0xFA When I processed this command the applet crashed. Is there any way to handle this case?
Upvotes: 0
Views: 88
Reputation: 5333
The only non-standard aspect is, that ISO 7816 does not define this command. Otherwise it surely is compliant with the standard in the sense that it does not violate it.
So your app seems at fault by incorrectly handling that scenario (like issuing SW_INS_NOT_SUPPORTED
for all commands not recognized).
Upvotes: 1