I have some problems reading the IBAN number from German CashCards (also known as Geldkarte). I can communicate with my card, and I get some information from it. but I don’t know which commandApdu should I send to the card to get the IBAN number ...
The application runs on Java 7 and I use java.smartcardio api
Protocol equal to T = 1
my apdu command to get the date is as follows:
byte[] commandBytes = new byte[]{0x00, (byte)0xa4, 0x04, 0x00, 0x07, (byte)0xa0, 0x00, 0x00, 0x00,0x04, 0x30, 0x60, 0x00};
The information I receive:
6F 32 84 07 A0 00 00 00 04 30 60 A5 27 50 07 4D 61 65 73 74 72 6F 87 01 03 9F 38 09 9F 33 02 9F 35 01 9F 40 01 5F 2D 04 64 65 65 6E BF 0C 05 9F 4D 02 19 0A
Can someone tell me the correct update for getting an IBAN number?
I'm sorry if I missed some necessary information, but this is my first question on this board :-)