From 60f6006a893e55522b8a46fdd8acc31ab6b53b85 Mon Sep 17 00:00:00 2001 From: Richard Allitt Date: Fri, 15 Nov 2024 22:50:09 +0000 Subject: [PATCH] Add Nevar WLS key to Ucam-WebAuth configuration --- control/webapp/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control/webapp/utils.py b/control/webapp/utils.py index 1794212..44bf8bb 100644 --- a/control/webapp/utils.py +++ b/control/webapp/utils.py @@ -38,7 +38,7 @@ def __str__(self): class WLSResponse(ucam_webauth.Response): keys = dict() - for kid in (2, 500): + for kid in (2, 500, 501): with open('/etc/apache2/ucam_webauth_keys/pubkey{}'.format(kid), 'rb') as f: keys[str(kid)] = ucam_webauth.rsa.load_key(f.read())