From 90f7497d6d8d440e6c2066ffc1948f689b6ed6a8 Mon Sep 17 00:00:00 2001 From: Robert Falkenberg Date: Thu, 6 May 2021 09:57:37 +0200 Subject: [PATCH] ts_102_221: add missing TLV key '9B'/'target_ef' for sysmoUSIM-SJS1 Change-Id: I8131bfbbdeb50ddb4d6a06c16586238a36582b5e --- pySim/ts_102_221.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pySim/ts_102_221.py b/pySim/ts_102_221.py index bb49fe5e..38a69de6 100644 --- a/pySim/ts_102_221.py +++ b/pySim/ts_102_221.py @@ -182,6 +182,8 @@ def fixup_fcp_proprietary_tlv_map(tlv_map): for i in range(0xc0, 0xff): i_hex = i2h([i]).upper() tlv_map[i_hex] = 'proprietary_' + i_hex + # Other non-standard TLV objects found on some cards + tlv_map['9B'] = 'target_ef' # for sysmoUSIM-SJS1 def tlv_key_replace(inmap, indata):