euicc: the ICCID TLV object uses bcd-swapped-nibble encoding

Change-Id: I050f9e0fb128f3e1d472e2330b136a753794a5a1
This commit is contained in:
Harald Welte 2023-12-07 14:21:19 +01:00
parent 5482737f31
commit 2b6deddcdc
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ class SeqNumber(BER_TLV_IE, tag=0x80):
class NotificationAddress(BER_TLV_IE, tag=0x82):
_construct = Utf8Adapter(GreedyBytes)
class Iccid(BER_TLV_IE, tag=0x5a):
_construct = HexAdapter(GreedyBytes)
_construct = BcdAdapter(GreedyBytes)
class NotificationMetadata(BER_TLV_IE, tag=0xbf2f, nested=[SeqNumber, ProfileMgmtOperation,
NotificationAddress, Iccid]):
pass