From cd9c655d65e59e090ffe538fd6c7566291bf41d6 Mon Sep 17 00:00:00 2001 From: Oscar Krause Date: Tue, 22 Apr 2025 09:45:58 +0200 Subject: [PATCH] fixes --- app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index bef65fb..e6f389b 100644 --- a/app/main.py +++ b/app/main.py @@ -493,8 +493,8 @@ async def leasing_v1_config_token(request: Request): # 76 chars per line "publicCert": response_si_certificate, "publicKey": { - "exp": my_si_private_key.public_key().mod(), - "mod": [my_si_private_key.public_key().exp()], + "exp": my_si_public_key.exp(), + "mod": [my_si_public_key.mod()], }, }, "configToken": config_token,