From 6287db48552634117f1560ad110cac2a4898019e Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Thu, 19 Dec 2024 18:06:54 +0100 Subject: [PATCH] global_platform: remove unused code This commented out part is not needed anymore. Related: OS#6679 Change-Id: If1de0218f841159789ac86f6a13740c1cbd0a57a --- pySim/global_platform/__init__.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pySim/global_platform/__init__.py b/pySim/global_platform/__init__.py index fddab4e3..28cc01e8 100644 --- a/pySim/global_platform/__init__.py +++ b/pySim/global_platform/__init__.py @@ -897,13 +897,6 @@ class CardApplicationISD(CardApplicationSD): super().__init__(aid=aid, name='ADF.ISD', desc='Issuer Security Domain') self.adf.scp_key_identity = 'ICCID' -#class CardProfileGlobalPlatform(CardProfile): -# ORDER = 23 -# -# def __init__(self, name='GlobalPlatform'): -# super().__init__(name, desc='GlobalPlatfomr 2.1.1', cla=['00','80','84'], sw=sw_table) - - class GpCardKeyset: """A single set of GlobalPlatform card keys and the associated KVN.""" def __init__(self, kvn: int, enc: bytes, mac: bytes, dek: bytes):