PHP 8.4.0 RC4 available for testing

Algoritmos de Assinatura

OPENSSL_ALGO_DSS1 (int)
OPENSSL_ALGO_SHA1 (int)
Usado como algoritmo padrão por openssl_sign() e openssl_verify().
OPENSSL_ALGO_SHA224 (int)
OPENSSL_ALGO_SHA256 (int)
OPENSSL_ALGO_SHA384 (int)
OPENSSL_ALGO_SHA512 (int)
OPENSSL_ALGO_RMD160 (int)
OPENSSL_ALGO_MD5 (int)
OPENSSL_ALGO_MD4 (int)
OPENSSL_ALGO_MD2 (int)
Esta constante só está disponível se o PHP for compilado com suporte a MD2. Isso requer passar o CFLAG -DHAVE_OPENSSL_MD2_H ao compilar o PHP, e enable-md2 ao compilar o OpenSSL 1.0.0+.
adicione uma nota

Notas Enviadas por Usuários (em inglês) 1 note

up
1
tim at remitone dot com
1 year ago
It should be noted that the default signature algorithm used by openssl_sign() and openssl_verify (OPENSSL_ALGO_SHA1) is no longer supported by default in OpenSSL Version 3 series.

With an up to date OpenSSL library, one has to run
"update-crypto-policies --set LEGACY"
on the server where the library resides in order to allow these functions to work without the optional alternative algorithm argument.
To Top