Update provider info supporting HS256 id_token sign alg.

This commit is contained in:
Juan Ignacio Fiorentino 2016-03-22 20:48:30 -03:00
parent dff76cd1ea
commit f44b5a1114

View file

@ -181,7 +181,7 @@ class ProviderInfoView(View):
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
dic['subject_types_supported'] = ['public']