File tree Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8
8
9
9
### Added
10
10
* Added the ` getAuthorizationURL ` method to get the authorization URL without the redirect
11
- * Allow to turn off signature verification
12
11
13
12
## [ 1.1.2]
14
13
Original file line number Diff line number Diff line change @@ -133,12 +133,6 @@ class OpenIDConnectClient
133
133
* @var bool Verify peer hostname on transactions
134
134
*/
135
135
private $ verifyHost = true ;
136
-
137
- /**
138
- * @var bool Verify JWT signature
139
- *
140
- */
141
- public $ verifySignature = true ;
142
136
143
137
/**
144
138
* @var string if we acquire an access token it will be stored here
@@ -1589,7 +1583,7 @@ public function getClientSecret() {
1589
1583
* @return bool
1590
1584
*/
1591
1585
public function canVerifySignatures () {
1592
- return ( class_exists ('\phpseclib\Crypt\RSA ' ) || class_exists ('Crypt_RSA ' )) and ( $ this -> verifySignature );
1586
+ return class_exists ('\phpseclib\Crypt\RSA ' ) || class_exists ('Crypt_RSA ' );
1593
1587
}
1594
1588
1595
1589
/**
You can’t perform that action at this time.
0 commit comments