Update provider info supporting HS256 id_token sign alg.
This commit is contained in:
parent
dff76cd1ea
commit
f44b5a1114
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ class ProviderInfoView(View):
|
||||||
|
|
||||||
dic['jwks_uri'] = SITE_URL + reverse('oidc_provider:jwks')
|
dic['jwks_uri'] = SITE_URL + reverse('oidc_provider:jwks')
|
||||||
|
|
||||||
dic['id_token_signing_alg_values_supported'] = ['RS256']
|
dic['id_token_signing_alg_values_supported'] = ['HS256', 'RS256']
|
||||||
|
|
||||||
# See: http://openid.net/specs/openid-connect-core-1_0.html#SubjectIDTypes
|
# See: http://openid.net/specs/openid-connect-core-1_0.html#SubjectIDTypes
|
||||||
dic['subject_types_supported'] = ['public']
|
dic['subject_types_supported'] = ['public']
|
||||||
|
|
Loading…
Reference in a new issue