Do not return the FCI information while selecting a file

The sysmoUSIM-SJS1 card does not support returning the FCI
information.
Plus, the FCI information are not used anyway.
This commit is contained in:
Jan Balke
2015-01-26 11:18:28 +01:00
committed by Holger Hans Peter Freyther
parent 73b686f7ee
commit 800c9eb097

View File

@@ -41,7 +41,7 @@ class SimCardCommands(object):
def select_file(self, dir_list):
rv = []
for i in dir_list:
data, sw = self._tp.send_apdu_checksw(self.cla_byte + "a4000002" + i)
data, sw = self._tp.send_apdu_checksw(self.cla_byte + "a4000C02" + i)
rv.append(data)
return rv