Returns FCI of the selected application.
if (FCI != null && opened && cardSlot.powered &&
cardSessionId == cardSlot.cardSessionId) {
int len = FCI.length;
byte[] result = new byte[len];
System.arraycopy(FCI, 0, result, 0, len);
return result;
}
return null;