X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=doc%2Fcrypto%2FRSA_private_encrypt.pod;h=fa4830c97e313cfc3d4671c2b855bbeb8481d742;hp=92253815e5314fa3bd517a8a11ff4587a1e00f28;hb=a528d4f0a9a71405f3ca06e20cbd27aa1b8c0df9;hpb=036c8d7e7b68f0db9a6322599c6a5095a98670d1 diff --git a/doc/crypto/RSA_private_encrypt.pod b/doc/crypto/RSA_private_encrypt.pod index 92253815e5..fa4830c97e 100644 --- a/doc/crypto/RSA_private_encrypt.pod +++ b/doc/crypto/RSA_private_encrypt.pod @@ -2,17 +2,17 @@ =head1 NAME -RSA_private_encrypt, RSA_public_decrypt - Low level signature operations +RSA_private_encrypt, RSA_public_decrypt - low level signature operations =head1 SYNOPSIS #include int RSA_private_encrypt(int flen, unsigned char *from, - unsigned char *to, RSA *rsa,int padding); + unsigned char *to, RSA *rsa, int padding); int RSA_public_decrypt(int flen, unsigned char *from, - unsigned char *to, RSA *rsa,int padding); + unsigned char *to, RSA *rsa, int padding); =head1 DESCRIPTION @@ -31,7 +31,7 @@ B denotes one of the following modes: PKCS #1 v1.5 padding. This function does not handle the B specified in PKCS #1. When generating or -verifying PKCS #1 signatures, RSA_sign(3) and RSA_verify(3) should be +verifying PKCS #1 signatures, L and L should be used. =item RSA_NO_PADDING @@ -55,15 +55,11 @@ RSA_size(rsa)). RSA_public_decrypt() returns the size of the recovered message digest. On error, -1 is returned; the error codes can be -obtained by ERR_get_error(3). +obtained by L. =head1 SEE ALSO -err(3), rsa(3), RSA_sign(3), RSA_verify(3) - -=head1 HISTORY - -The B argument was added in SSLeay 0.8. RSA_NO_PADDING is -available since SSLeay 0.9.0. +L, L, +L, L =cut