Merge pull request #21800 from nextcloud/bug/noid/key_export_call
Call openssl_pkey_export with $config and log errors.
This commit is contained in:
commit
2c87ce60a0
|
@ -225,7 +225,10 @@ class LoginFlowV2Service {
|
||||||
throw new \RuntimeException('Could not initialize keys');
|
throw new \RuntimeException('Could not initialize keys');
|
||||||
}
|
}
|
||||||
|
|
||||||
openssl_pkey_export($res, $privateKey);
|
if (openssl_pkey_export($res, $privateKey, null, $config) === false) {
|
||||||
|
$this->logOpensslError();
|
||||||
|
throw new \RuntimeException('OpenSSL reported a problem');
|
||||||
|
}
|
||||||
|
|
||||||
// Extract the public key from $res to $pubKey
|
// Extract the public key from $res to $pubKey
|
||||||
$publicKey = openssl_pkey_get_details($res);
|
$publicKey = openssl_pkey_get_details($res);
|
||||||
|
|
Loading…
Reference in New Issue