idp_oidc: put HMAC algo before RSA (#28249)

This commit is contained in:
Benjamin Dauvergne 2018-11-22 11:56:16 +01:00
parent 2d54ac7f74
commit b4036dd183
1 changed files with 1 additions and 1 deletions

View File

@ -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