Merge pull request #12895 from nextcloud/bugfix/12890/log-openssl-errors

Read openssl error and log
This commit is contained in:
Roeland Jago Douma 2018-12-07 09:41:47 +01:00 committed by GitHub
commit 6f00798c11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View File

@ -295,6 +295,10 @@ class PublicKeyTokenProvider implements IProvider {
// Generate new key
$res = openssl_pkey_new($config);
if ($res === false) {
$this->logOpensslError();
}
openssl_pkey_export($res, $privateKey);
// Extract the public key from $res to $pubKey
@ -343,5 +347,11 @@ class PublicKeyTokenProvider implements IProvider {
}
}
private function logOpensslError() {
$errors = [];
while ($error = openssl_error_string()) {
$errors[] = $error;
}
$this->logger->critical('Something is wrong with your openssl setup: ' . implode(', ', $errors));
}
}