Allow IPv6 address entry in tools>ping - Loosens valid character check
[tomato/davidwu.git] / release / src / router / openssl / doc / crypto / RSA_generate_key.pod
blob52dbb14a537debb5e727a5a03d520f6c60080f01
1 =pod
3 =head1 NAME
5 RSA_generate_key - generate RSA key pair
7 =head1 SYNOPSIS
9  #include <openssl/rsa.h>
11  RSA *RSA_generate_key(int num, unsigned long e,
12     void (*callback)(int,int,void *), void *cb_arg);
14 =head1 DESCRIPTION
16 RSA_generate_key() generates a key pair and returns it in a newly
17 allocated B<RSA> structure. The pseudo-random number generator must
18 be seeded prior to calling RSA_generate_key().
20 The modulus size will be B<num> bits, and the public exponent will be
21 B<e>. Key sizes with B<num> E<lt> 1024 should be considered insecure.
22 The exponent is an odd number, typically 3, 17 or 65537.
24 A callback function may be used to provide feedback about the
25 progress of the key generation. If B<callback> is not B<NULL>, it
26 will be called as follows:
28 =over 4
30 =item *
32 While a random prime number is generated, it is called as
33 described in L<BN_generate_prime(3)|BN_generate_prime(3)>.
35 =item *
37 When the n-th randomly generated prime is rejected as not
38 suitable for the key, B<callback(2, n, cb_arg)> is called.
40 =item *
42 When a random p has been found with p-1 relatively prime to B<e>,
43 it is called as B<callback(3, 0, cb_arg)>.
45 =back
47 The process is then repeated for prime q with B<callback(3, 1, cb_arg)>.
49 =head1 RETURN VALUE
51 If key generation fails, RSA_generate_key() returns B<NULL>; the
52 error codes can be obtained by L<ERR_get_error(3)|ERR_get_error(3)>.
54 =head1 BUGS
56 B<callback(2, x, cb_arg)> is used with two different meanings.
58 RSA_generate_key() goes into an infinite loop for illegal input values.
60 =head1 SEE ALSO
62 L<ERR_get_error(3)|ERR_get_error(3)>, L<rand(3)|rand(3)>, L<rsa(3)|rsa(3)>,
63 L<RSA_free(3)|RSA_free(3)>
65 =head1 HISTORY
67 The B<cb_arg> argument was added in SSLeay 0.9.0.
69 =cut