You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
. The openssl_x509_free() function is deprecated and no longer has an effect,
instead the OpenSSLCertificate instance is automatically destroyed if it is no
longer referenced.
. The openssl_pkey_free() (and its alias openssl_free_key)
function is deprecated and no longer has an effect,
instead the OpenSSLAsymmetricKey instance is automatically destroyed if it is no
longer referenced.
And there is a case of openssl_free_key() @ S3.php
Maybe it should be replaced to something like:
if (PHP_MAJOR_VERSION < 8) {
openssl_free_key(self::$__signingKeyResource);
}
self::$__signingKeyResource = null;
Ciao :-)
The text was updated successfully, but these errors were encountered:
From the php80 release notes:
And there is a case of
openssl_free_key()
@ S3.phpMaybe it should be replaced to something like:
Ciao :-)
The text was updated successfully, but these errors were encountered: