aboutsummaryrefslogtreecommitdiffstats
path: root/pySim-read.py
diff options
context:
space:
mode:
authorSupreeth Herle <herlesupreeth@gmail.com>2020-03-22 10:00:43 +0100
committerSupreeth Herle <herlesupreeth@gmail.com>2020-06-23 13:54:20 +0200
commitb1634db0b32fedd8088c3f69602b74bfcf5ef186 (patch)
tree2956b4a9ce5d3f2317eaa94f78248ad897e70b90 /pySim-read.py
parentd6a5ec51a8d4440f9434014bb8e2d1f7cf2b2f48 (diff)
pySim-read.py: Enable parsing of Home ePDG Identifier in USIM
As per TS 31.102, version 13.4.0 Release 13, this EF can found under ADF.USIM at File Id 6ff3. Also, if service n°106 and service n°107 are available, this file shall be present. Change-Id: I68114d328d1af5682a5bc1fa7642882e80b5de4d
Diffstat (limited to 'pySim-read.py')
-rwxr-xr-xpySim-read.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/pySim-read.py b/pySim-read.py
index b23e6ee..69cab4d 100755
--- a/pySim-read.py
+++ b/pySim-read.py
@@ -35,7 +35,7 @@ from pySim.ts_31_103 import EF_IST_map
from pySim.commands import SimCardCommands
from pySim.cards import card_detect, Card
from pySim.utils import h2b, swap_nibbles, rpad, dec_imsi, dec_iccid, dec_msisdn
-from pySim.utils import format_xplmn_w_act, dec_spn, dec_st, init_reader
+from pySim.utils import format_xplmn_w_act, dec_spn, dec_st, init_reader, dec_epdgid
def parse_options():
@@ -250,6 +250,17 @@ if __name__ == '__main__':
else:
print("USIM Service Table: Can't read, response code = %s" % (sw,))
+ #EF.ePDGId - Home ePDG Identifier
+ try:
+ (res, sw) = card.read_binary(EF_USIM_ADF_map['ePDGId'])
+ if sw == '9000':
+ content = dec_epdgid(res)
+ print("ePDGId:\n%s" % (len(content) and content or '\tNot available\n',))
+ else:
+ print("ePDGId: Can't read, response code = %s" % (sw,))
+ except Exception as e:
+ print("ePDGId: Can't read file -- " + str(e))
+
# Check whether we have th AID of ISIM, if so select it by its AID
# EF.IST - File Id in ADF ISIM : 6f07
if '9000' == card.select_adf_by_aid(adf="isim"):