From ecbada993d8b5a40bb3a67a70e6571fbb844c02e Mon Sep 17 00:00:00 2001 From: herlesupreeth Date: Wed, 23 Dec 2020 09:24:29 +0100 Subject: cards: Define ISIM Card class This commit introduces a ISIM generic Card class which can hold parameters/functions specific to ISIM application on UICC Change-Id: I242e679ff2f8831175e76d2fcc5fb285d28bd890 --- pySim/cards.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pySim/cards.py b/pySim/cards.py index 1662fc5..308d262 100644 --- a/pySim/cards.py +++ b/pySim/cards.py @@ -309,6 +309,10 @@ class UsimCard(Card): (res, sw) = self._scc.update_binary(EF_USIM_ADF_map['UST'], content) return sw +class IsimCard(Card): + def __init__(self, ssc): + super(IsimCard, self).__init__(ssc) + class _MagicSimBase(Card): """ -- cgit v1.2.3