Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit b162bc5

Browse files
committed
Strict on which signing algorithm that can be used.
1 parent f659692 commit b162bc5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/oidcrp/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -924,7 +924,9 @@ def backchannel_logout(client, request='', request_args=None):
924924
kwargs = {
925925
'aud': client.service_context.client_id,
926926
'iss': client.service_context.issuer,
927-
'keyjar': client.service_context.keyjar
927+
'keyjar': client.service_context.keyjar,
928+
'allowed_sign_alg': client.service_context.registration_response.get(
929+
"id_token_signed_response_alg", "RS256")
928930
}
929931

930932
try:

0 commit comments

Comments
 (0)