I am testing if openssl is enabled and returns keys. Though openssl is enabled it is not returing keys. When tried to install the TYPO3 the error message is appearing.
if (extension_loaded('openssl')) {
$testKey = @openssl_pkey_new();
if (is_resource($testKey)) {
} else {
echo ' Please check the integration of the PHP OpenSSL extension and if it is installed correctly.';
}
}
Please help to continue installation. Thanks