WIP: classic SIM (3GPP TS 51.011) support.

Change-Id: I1cbbbabd22a67048f3ee9330c12f72c34152ce45
This commit is contained in:
Harald Welte
2022-07-24 10:10:37 +02:00
parent 763f2dfde8
commit 755bb2dcfc
2 changed files with 339 additions and 1 deletions

View File

@@ -27,10 +27,11 @@ logger = colorlog.getLogger()
# merge all of the command sets into one global set. This will override instructions,
# the one from the 'last' set in the addition below will prevail.
from pySim.apdu.ts_51_011 import ApduCommands as SimApduCommands
from pySim.apdu.ts_102_221 import ApduCommands as UiccApduCommands
from pySim.apdu.ts_31_102 import ApduCommands as UsimApduCommands
from pySim.apdu.global_platform import ApduCommands as GpApduCommands
ApduCommands = UiccApduCommands + UsimApduCommands #+ GpApduCommands
ApduCommands = SimApduCommands + UiccApduCommands + UsimApduCommands #+ GpApduCommands
class DummySimLink(LinkBase):