I'm trying to list applets/packages on a Java Card. I use the following APDU command to get the list:
80 F2 E0 00 02 4F 00 00
That command returns the status word 0x61xx
, so I send a GET RESPONSE command for xx
bytes:
00 C0 00 00 xx
This gives me xx
data bytes and the status word 0x6310
("more data available"). What should I send next to receive further data as indicated by the status word?
APDU trace:
[SEND] 80 F2 E0 00 02 4F 00 00 [RECEIVE] 61 F2 [SEND] 00 C0 00 00 F2 [RECEIVE] <F2 bytes of data> 63 10 [SEND] ???