We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c8f54d commit 05f1228Copy full SHA for 05f1228
src/OpenIDConnectClient.php
@@ -469,12 +469,7 @@ public function verifyLogoutToken(): bool
469
$claims = $this->decodeJWT($logout_token, 1);
470
471
// Verify the signature
472
- if (!$this->getProviderConfigValue('jwks_uri')) {
473
- throw new OpenIDConnectClientException('Back-channel logout: Unable to verify signature due to no jwks_uri being defined');
474
- }
475
- if (!$this->verifyJWTSignature($logout_token)) {
476
- throw new OpenIDConnectClientException('Back-channel logout: Unable to verify JWT signature');
477
+ $this->verifySignatures($logout_token);
478
479
// Verify Logout Token Claims
480
if ($this->verifyLogoutTokenClaims($claims)) {
0 commit comments