From 84faea44e6ad9ff7f470b5958e7303f6c521bf2e Mon Sep 17 00:00:00 2001 From: Robbie Harwood Date: Wed, 19 May 2021 15:15:19 -0400 Subject: [PATCH] Fix upgrading docs for RSA_private_encrypt/RSA_public_decrypt Despite the name, these functions manipulate signatures, which means that their replacements are the EVP_PKEY_sign/EVP_PKEY_verify family. Signed-off-by: Robbie Harwood Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/15359) --- doc/man3/RSA_private_encrypt.pod | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/man3/RSA_private_encrypt.pod b/doc/man3/RSA_private_encrypt.pod index a74a39834c..4b97d874c3 100644 --- a/doc/man3/RSA_private_encrypt.pod +++ b/doc/man3/RSA_private_encrypt.pod @@ -21,9 +21,9 @@ L: =head1 DESCRIPTION Both of the functions described on this page are deprecated. -Applications should instead use L, -L, L and -L. +Applications should instead use L, +L, L and +L. These functions handle RSA signatures at a low-level. -- GitLab