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 5d78554 commit 0ee2ebbCopy full SHA for 0ee2ebb
src/OpenIDConnectClient.php
@@ -133,12 +133,6 @@ class OpenIDConnectClient
133
* @var bool Verify peer hostname on transactions
134
*/
135
private $verifyHost = true;
136
-
137
- /**
138
- * @var bool Verify JWT signature
139
- *
140
- */
141
- public $verifySignature = true;
142
143
/**
144
* @var string if we acquire an access token it will be stored here
@@ -1588,7 +1582,7 @@ public function getClientSecret() {
1588
1582
* @return bool
1589
1583
1590
1584
public function canVerifySignatures() {
1591
- return (class_exists('\phpseclib\Crypt\RSA') || class_exists('Crypt_RSA')) and ($this->verifySignature);
1585
+ return class_exists('\phpseclib\Crypt\RSA') || class_exists('Crypt_RSA');
1592
1586
}
1593
1587
1594
0 commit comments