I have a DESfire Ev1 version 1.3 card and I'm trying to select a file using ISO7816 apdu style.
I have one file, with aid A0 A1 A2
and I can select it using both native or wrapped mode:
Native:
-> 5A A0 A1 A2
<- 00
Wrapped:
-> 90 5A 00 00 03 A0 A1 A2 00
<- 91 00
However, if I try to select it using ISO7816 style, I always get a file not found error:
ISO7816:
-> 00 A4 04 00 03 A0 A1 A2 00
-> 6A 82
When using ISO apdu, is the AID in a different format? How can I select this AID using it?