mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-15 17:57:12 +00:00
Merge branch '3.0'
This commit is contained in:
commit
dad0c699cd
@ -2101,7 +2101,12 @@ class X509
|
||||
}
|
||||
|
||||
if (isset($this->currentCert) && is_array($this->currentCert)) {
|
||||
foreach (['tbsCertificate/subjectPublicKeyInfo', 'certificationRequestInfo/subjectPKInfo'] as $path) {
|
||||
$paths = [
|
||||
'tbsCertificate/subjectPublicKeyInfo',
|
||||
'certificationRequestInfo/subjectPKInfo',
|
||||
'publicKeyAndChallenge/spki'
|
||||
];
|
||||
foreach ($paths as $path) {
|
||||
$keyinfo = $this->subArray($this->currentCert, $path);
|
||||
if (!empty($keyinfo)) {
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user