]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
RSA_public_decrypt is equivalent to a verify recover operation
authorTomas Mraz <tomas@openssl.org>
Thu, 15 Jul 2021 07:30:23 +0000 (09:30 +0200)
committerTomas Mraz <tomas@openssl.org>
Fri, 16 Jul 2021 09:29:34 +0000 (11:29 +0200)
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/16068)

doc/man3/RSA_private_encrypt.pod
doc/man7/migration_guide.pod

index 4b97d874c3a38a05725ce64be529d3c4cc2f7496..1c89b58b5fb5095c02e625556c9449c0ed1dff08 100644 (file)
@@ -22,8 +22,8 @@ L<openssl_user_macros(7)>:
 
 Both of the functions described on this page are deprecated.
 Applications should instead use L<EVP_PKEY_sign_init_ex(3)>,
-L<EVP_PKEY_sign(3)>, L<EVP_PKEY_verify_init_ex(3)> and
-L<EVP_PKEY_verify(3)>.
+L<EVP_PKEY_sign(3)>, L<EVP_PKEY_verify_recover_init(3)>, and
+L<EVP_PKEY_verify_recover(3)>.
 
 These functions handle RSA signatures at a low-level.
 
@@ -69,7 +69,8 @@ obtained by L<ERR_get_error(3)>.
 =head1 SEE ALSO
 
 L<ERR_get_error(3)>,
-L<RSA_sign(3)>, L<RSA_verify(3)>
+L<RSA_sign(3)>, L<RSA_verify(3)>,
+L<EVP_PKEY_sign(3)>, L<EVP_PKEY_verify_recover(3)>
 
 =head1 HISTORY
 
index 9a9d940af4b14c08cd2427d35f3a0d53e1bbebca..aac158795cba199c4ba8571bf615ac7409ef4402 100644 (file)
@@ -2025,8 +2025,8 @@ See L</Deprecated low-level encryption functions>
 
 RSA_private_encrypt(), RSA_public_decrypt()
 
-This is equivalent to doing sign and verify operations (with a padding mode
-of none). See L</Deprecated low-level signing functions>.
+This is equivalent to doing sign and verify recover operations (with a padding
+mode of none). See L</Deprecated low-level signing functions>.
 
 =item -