From 5964bdd5a495461816807eba8b6de601405dd132 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 7 Jun 2024 14:28:01 +0200 Subject: [PATCH] osmo-smdpp: use NIST-P256 by default The eSIM specs allow for both brainpool and nist; in reality the deployments use the NIST P256 curve. osmo-smdpp currently only supports a single certificate; let's use the NIST one by default. Change-Id: Idc7809f320505279c8a75e9b667be0a2af802f6b --- osmo-smdpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osmo-smdpp.py b/osmo-smdpp.py index 95513962..6c275ac7 100755 --- a/osmo-smdpp.py +++ b/osmo-smdpp.py @@ -559,7 +559,7 @@ def main(argv): args = parser.parse_args() - hs = SmDppHttpServer(HOSTNAME, os.path.join(DATA_DIR, 'certs', 'CertificateIssuer'), use_brainpool=True) + hs = SmDppHttpServer(HOSTNAME, os.path.join(DATA_DIR, 'certs', 'CertificateIssuer'), use_brainpool=False) #hs.app.run(endpoint_description="ssl:port=8000:dhParameters=dh_param_2048.pem") hs.app.run("localhost", 8000)