aboutsummaryrefslogtreecommitdiffstats
path: root/pySim
diff options
context:
space:
mode:
authorSupreeth Herle <herlesupreeth@gmail.com>2020-03-25 15:38:02 +0100
committerherlesupreeth <herlesupreeth@gmail.com>2021-01-05 11:46:41 +0100
commit3f67f9c1d310363678a484918f0e9c93814d202e (patch)
treed9151be13ef16cc66b5137308c402e294ed104ec /pySim
parent28484d03e31cec11aa47c41bf52edca9d76c47dc (diff)
pySim-read.py: Enable reading of EF.IMPI from ISIM
IMS private user identity (IMPI) As per TS1.103 version 14.2.0, this EF contains the private user identity of the user. EF.IMPI consist of NAI TLV Data object.The NAI shall be encoded to an octet string according to UTF-8 encoding rules as specified in IETF RFC 3629. Reading of EF.IMPI is achieved by first selecting the ISIM application using its AID. This is followed by selecting EF.IMPI with File ID - 6f02 in ADF.ISIM Change-Id: I8d8e76e3f6b9ca7a0be262fee99cd5a397edbefa
Diffstat (limited to 'pySim')
-rw-r--r--pySim/cards.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/pySim/cards.py b/pySim/cards.py
index 17da506..17b7bce 100644
--- a/pySim/cards.py
+++ b/pySim/cards.py
@@ -375,6 +375,16 @@ class IsimCard(Card):
data, sw = self._scc.update_binary(EF_ISIM_ADF_map['DOMAIN'], rpad(content, bin_size_bytes*2))
return sw
+ def read_impi(self):
+ (res, sw) = self._scc.read_binary(EF_ISIM_ADF_map['IMPI'])
+ if sw == '9000':
+ # Skip the inital tag value ('80') byte and get length of contents
+ length = int(res[2:4], 16)
+ content = h2s(res[4:4+(length*2)])
+ return (content, sw)
+ else:
+ return (None, sw)
+
class _MagicSimBase(Card):
"""