Document the RSA library.
[openssl.git] / doc / crypto / RSA_private_encrypt.pod
1 =pod
2
3 =head1 NAME
4
5 RSA_private_encrypt, RSA_public_decrypt - Low level signature operations
6
7 =head1 SYNOPSIS
8
9  #include <openssl/rsa.h>
10
11  int RSA_private_encrypt(int flen, unsigned char *from,
12     unsigned char *to, RSA *rsa,int padding);
13
14  int RSA_public_decrypt(int flen, unsigned char *from, 
15     unsigned char *to, RSA *rsa,int padding);
16
17 =head1 DESCRIPTION
18
19 These functions handle RSA signatures at a low level.
20
21 RSA_private_encrypt() signs the B<flen> bytes at B<from> (usually a
22 message digest with an algorithm identifier) using the private key
23 B<rsa> and stores the signature in B<to>. B<to> must point to
24 B<RSA_size(rsa)> bytes of memory.
25
26 B<padding> denotes one of the following modes:
27
28 =over 4
29
30 =item RSA_PKCS1_PADDING
31
32 PKCS #1 v1.5 padding. This function does not handle the
33 B<algorithmIdentifier> specified in PKCS #1. When generating or
34 verifying PKCS #1 signatures, RSA_sign(3) and RSA_verify(3) should be
35 used.
36
37 =item RSA_NO_PADDING
38
39 Raw RSA signature. This mode should I<only> be used to implement
40 cryptographically sound padding modes in the application code.
41 Signing user data directly with RSA is insecure.
42
43 =back
44
45 The random number generator must be seeded prior to calling
46 RSA_private_encrypt().
47
48 RSA_public_decrypt() recovers the message digest from the B<flen>
49 bytes long signature at B<from> using the signer's public key
50 B<rsa>. B<to> must point to a memory section large enough to hold the
51 message digest (which is smaller than B<RSA_size(rsa) -
52 11>). B<padding> is the padding mode that was used to sign the data.
53
54 =head1 RETURN VALUES
55
56 RSA_private_encrypt() returns the size of the signature (i.e.,
57 RSA_size(rsa)). RSA_public_decrypt() returns the size of the
58 recovered message digest.
59
60 On error, -1 is returned; the error codes can be
61 obtained by ERR_get_error(3).
62
63 =head1 SEE ALSO
64
65 err(3), rand(3), rsa(3), RSA_sign(3), RSA_verify(3)
66
67 =head1 HISTORY
68
69 The B<padding> argument was added in SSLeay 0.8. RSA_NO_PADDING is
70 available since SSLeay 0.9.0.
71
72 =cut