From 8d021997f46587c665c57bb17173dab62309291f Mon Sep 17 00:00:00 2001 From: lacatoire Date: Mon, 8 Jun 2026 15:18:00 +0200 Subject: [PATCH] Document new OpenSSL constants (PHP 8.5) --- reference/openssl/constants.xml | 52 +++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/reference/openssl/constants.xml b/reference/openssl/constants.xml index ab467bda9d61..7771d9c1b348 100644 --- a/reference/openssl/constants.xml +++ b/reference/openssl/constants.xml @@ -157,6 +157,18 @@ + + + OPENSSL_PKCS1_PSS_PADDING + (int) + + + + RSA-PSS padding. + Available as of PHP 8.5.0. + + + @@ -379,6 +391,46 @@ application/x-pkcs7-mime to encrypt a message. + + + PKCS7_NOSMIMECAP + (int) + + + Available as of PHP 8.5.0. + Do not include the S/MIME capabilities (SMIMECapabilities) in the signature. + + + + + PKCS7_CRLFEOL + (int) + + + Available as of PHP 8.5.0. + Use CRLF as the end of line in the output. + + + + + PKCS7_NOCRL + (int) + + + Available as of PHP 8.5.0. + Do not include the CRLs in the PKCS7 structure. + + + + + PKCS7_NO_DUAL_CONTENT + (int) + + + Available as of PHP 8.5.0. + Do not include the duplicate content, avoiding the duplication of the signed content. + +