laforge has uploaded this change for review. (
https://gerrit.osmocom.org/c/pysim/+/35498?usp=email )
Change subject: euicc: Fix eUICC list_notifications command
......................................................................
euicc: Fix eUICC list_notifications command
Prior to this patch, the command would always raise exceptions.
Change-Id: I75a7840c3f4b68bfc164a43908b100dd6e41e575
---
M pySim/euicc.py
1 file changed, 15 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/98/35498/1
diff --git a/pySim/euicc.py b/pySim/euicc.py
index e45476f..e405f30 100644
--- a/pySim/euicc.py
+++ b/pySim/euicc.py
@@ -141,12 +141,13 @@
# SGP.22 Section 5.7.9: ListNotification
class ProfileMgmtOperation(BER_TLV_IE, tag=0x81):
- _construct = FlagsEnum(Byte, install=1, enable=2, disable=4, delete=8)
+ # we have to ignore the first byte which tells us how many padding bits are used in
the last octet
+ _construct = Struct(Byte, "pmo"/FlagsEnum(Byte, install=0x80, enable=0x40,
disable=0x20, delete=0x10))
class ListNotificationReq(BER_TLV_IE, tag=0xbf28, nested=[ProfileMgmtOperation]):
pass
class SeqNumber(BER_TLV_IE, tag=0x80):
- _construct = GreedyInteger
-class NotificationAddress(BER_TLV_IE, tag=0x82):
+ _construct = GreedyInteger()
+class NotificationAddress(BER_TLV_IE, tag=0x0c):
_construct = Utf8Adapter(GreedyBytes)
class Iccid(BER_TLV_IE, tag=0x5a):
_construct = BcdAdapter(GreedyBytes)
--
To view, visit
https://gerrit.osmocom.org/c/pysim/+/35498?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I75a7840c3f4b68bfc164a43908b100dd6e41e575
Gerrit-Change-Number: 35498
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: newchange