Refactoring BIO: add wrappers around sockaddr et al
[openssl.git] / doc / crypto / RSA_generate_key.pod
1 =pod
2
3 =head1 NAME
4
5 RSA_generate_key_ex, RSA_generate_key - generate RSA key pair
6
7 =head1 SYNOPSIS
8
9  #include <openssl/rsa.h>
10
11  int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb);
12
13 Deprecated:
14
15  #if OPENSSL_API_COMPAT < 0x00908000L
16  RSA *RSA_generate_key(int num, unsigned long e,
17     void (*callback)(int,int,void *), void *cb_arg);
18  #endif
19
20 =head1 DESCRIPTION
21
22 RSA_generate_key_ex() generates a key pair and stores it in the B<RSA>
23 structure provided in B<rsa>. The pseudo-random number generator must
24 be seeded prior to calling RSA_generate_key_ex().
25
26 The modulus size will be of length B<bits>, and the public exponent will be
27 B<e>. Key sizes with B<num> E<lt> 1024 should be considered insecure.
28 The exponent is an odd number, typically 3, 17 or 65537.
29
30 A callback function may be used to provide feedback about the
31 progress of the key generation. If B<cb> is not B<NULL>, it
32 will be called as follows using the BN_GENCB_call() function
33 described on the L<BN_generate_prime(3)> page.
34
35 =over 4
36
37 =item *
38
39 While a random prime number is generated, it is called as
40 described in L<BN_generate_prime(3)>.
41
42 =item *
43
44 When the n-th randomly generated prime is rejected as not
45 suitable for the key, B<BN_GENCB_call(cb, 2, n)> is called.
46
47 =item *
48
49 When a random p has been found with p-1 relatively prime to B<e>,
50 it is called as B<BN_GENCB_call(cb, 3, 0)>.
51
52 =back
53
54 The process is then repeated for prime q with B<BN_GENCB_call(cb, 3, 1)>.
55
56 RSA_generate_key is deprecated (new applications should use
57 RSA_generate_key_ex instead). RSA_generate_key works in the same was as
58 RSA_generate_key_ex except it uses "old style" call backs. See
59 L<BN_generate_prime(3)> for further details.
60
61 =head1 RETURN VALUE
62
63 If key generation fails, RSA_generate_key() returns B<NULL>.
64
65 The error codes can be obtained by L<ERR_get_error(3)>.
66
67 =head1 BUGS
68
69 B<BN_GENCB_call(cb, 2, x)> is used with two different meanings.
70
71 RSA_generate_key() goes into an infinite loop for illegal input values.
72
73 =head1 SEE ALSO
74
75 L<ERR_get_error(3)>, L<rand(3)>, L<rsa(3)>,
76 L<RSA_free(3)>, L<BN_generate_prime(3)>
77
78 =cut