From 3d6a712e8c670fb099b30579e2018943d4995a1f Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 28 Jul 2024 16:13:28 +0200 Subject: [PATCH] Fix missing AIDs in pySim.saip templates Change-Id: Ie02e2d27ece0fbd9719468c8d31febd1937468f8 --- pySim/esim/saip/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pySim/esim/saip/__init__.py b/pySim/esim/saip/__init__.py index 46ef69e7..4b8ad76a 100644 --- a/pySim/esim/saip/__init__.py +++ b/pySim/esim/saip/__init__.py @@ -62,7 +62,7 @@ class NaaCsim(Naa): class NaaUsim(Naa): name = "usim" - aid = h2b("") + aid = h2b("a0000000871002") mandatory_services = ["usim"] pe_types = ["usim", "opt-usim"] templates = [oid.ADF_USIM_by_default, oid.ADF_USIMopt_not_by_default, @@ -73,7 +73,7 @@ class NaaUsim(Naa): class NaaIsim(Naa): name = "isim" - aid = h2b("") + aid = h2b("a0000000871004") mandatory_services = ["isim"] pe_types = ["isim", "opt-isim"] templates = [oid.ADF_ISIM_by_default, oid.ADF_ISIMopt_not_by_default]