From: Samaresh Kumar Singh Date: Wed, 12 Nov 2025 20:51:04 +0000 (-0600) Subject: doc: Add HISTORY entry for message signing functions in provider-signature(7) X-Git-Tag: 3.5-PRE-CLANG-FORMAT-WEBKIT~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af76e77ccb3e220c53463a59320ef333469106b7;p=thirdparty%2Fopenssl.git doc: Add HISTORY entry for message signing functions in provider-signature(7) The OSSL_FUNC_signature_{sign,verify}_message_* functions were added in OpenSSL 3.4 but weren't documented in the HISTORY section of provider-signature(7), while the corresponding EVP_PKEY_sign_message_* functions are properly documented in EVP_PKEY_sign(3). This adds the missing HISTORY entry to document when these provider functions were introduced. Fixes #29088 CLA: trivial Reviewed-by: Tomas Mraz Reviewed-by: Norbert Pocs Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/29130) (cherry picked from commit 6b4ad7f8d8f40564621495f0f6183f9e7639d768) --- diff --git a/doc/man7/provider-signature.pod b/doc/man7/provider-signature.pod index 61202b52364..e85e7455345 100644 --- a/doc/man7/provider-signature.pod +++ b/doc/man7/provider-signature.pod @@ -633,8 +633,17 @@ L, L =head1 HISTORY The provider SIGNATURE interface was introduced in OpenSSL 3.0. -The Signature Parameters "fips-indicator", "key-check" and "digest-check" -were added in OpenSSL 3.4. + +The OSSL_FUNC_signature_sign_message_init(), OSSL_FUNC_signature_sign_message_update(), +OSSL_FUNC_signature_sign_message_final(), OSSL_FUNC_signature_verify_message_init(), +OSSL_FUNC_signature_verify_message_update() and OSSL_FUNC_signature_verify_message_final() +functions were added in OpenSSL 3.4. + +The Signature Parameters "fips-indicator", "key-check" and "digest-check" were added in +OpenSSL 3.4. + +Deterministic digital signature generation for ECDSA was added to the FIPS provider in OpenSSL +3.6. =head1 COPYRIGHT