From 228d03f39c5b6b440e2dd17bd9f6edcdbe52c11b Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Thu, 22 Nov 2018 11:56:16 +0100 Subject: [PATCH 1/2] idp_oidc: put HMAC algo before RSA (#28249) --- src/authentic2_idp_oidc/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authentic2_idp_oidc/models.py b/src/authentic2_idp_oidc/models.py index 5d192167..f6c69e98 100644 --- a/src/authentic2_idp_oidc/models.py +++ b/src/authentic2_idp_oidc/models.py @@ -54,8 +54,8 @@ class OIDCClient(Service): ALGO_RSA = 1 ALGO_HMAC = 2 ALGO_CHOICES = [ - (ALGO_RSA, _('RSA')), (ALGO_HMAC, _('HMAC')), + (ALGO_RSA, _('RSA')), ] FLOW_AUTHORIZATION_CODE = 1 FLOW_IMPLICIT = 2 -- 2.18.0