From: Michael Date: Sun, 15 Aug 2021 06:45:48 +0000 (+0000) Subject: Don't continue when key couldn't be created X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8b6ace6629ab4fe229c4c35ff388efe320602a16;p=friendica.git Don't continue when key couldn't be created --- diff --git a/src/Util/Crypto.php b/src/Util/Crypto.php index 1ff0e19c3c..85efb9e8ae 100644 --- a/src/Util/Crypto.php +++ b/src/Util/Crypto.php @@ -21,6 +21,7 @@ namespace Friendica\Util; +use Exception; use Friendica\Core\Hook; use Friendica\Core\Logger; use Friendica\Core\System; @@ -170,8 +171,7 @@ class Crypto $result = openssl_pkey_new($openssl_options); if (empty($result)) { - Logger::notice('new_keypair: failed'); - return []; + throw new Exception('Key creation failed'); } $response = ['prvkey' => '', 'pubkey' => '', 'vapid' => ''];