Various doc fixes.
[openssl.git] / doc / apps / genrsa.pod
1 =pod
2
3 =head1 NAME
4
5 genrsa - generate an RSA private key
6
7 =head1 SYNOPSIS
8
9 B<openssl> B<genrsa>
10 [B<-out filename>]
11 [B<-passout arg>]
12 [B<-aes128>]
13 [B<-aes192>]
14 [B<-aes256>]
15 [B<-camellia128>]
16 [B<-camellia192>]
17 [B<-camellia256>]
18 [B<-des>]
19 [B<-des3>]
20 [B<-idea>]
21 [B<-f4>]
22 [B<-3>]
23 [B<-rand file(s)>]
24 [B<-engine id>]
25 [B<numbits>]
26
27 =head1 DESCRIPTION
28
29 The B<genrsa> command generates an RSA private key.
30
31 =head1 OPTIONS
32
33 =over 4
34
35 =item B<-out filename>
36
37 the output filename. If this argument is not specified then standard output is
38 used.  
39
40 =item B<-passout arg>
41
42 the output file password source. For more information about the format of B<arg>
43 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
44
45 =item B<-aes128|-aes192|-aes256|-camellia128|-camellia192|-camellia256|-des|-des3|-idea>
46
47 These options encrypt the private key with specified
48 cipher before outputting it. If none of these options is
49 specified no encryption is used. If encryption is used a pass phrase is prompted
50 for if it is not supplied via the B<-passout> argument.
51
52 =item B<-F4|-3>
53
54 the public exponent to use, either 65537 or 3. The default is 65537.
55
56 =item B<-rand file(s)>
57
58 a file or files containing random data used to seed the random number
59 generator, or an EGD socket (see L<RAND_egd(3)>).
60 Multiple files can be specified separated by a OS-dependent character.
61 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
62 all others.
63
64 =item B<-engine id>
65
66 specifying an engine (by its unique B<id> string) will cause B<genrsa>
67 to attempt to obtain a functional reference to the specified engine,
68 thus initialising it if needed. The engine will then be set as the default
69 for all available algorithms.
70
71 =item B<numbits>
72
73 the size of the private key to generate in bits. This must be the last option
74 specified. The default is 512.
75
76 =back
77
78 =head1 NOTES
79
80 RSA private key generation essentially involves the generation of two prime
81 numbers. When generating a private key various symbols will be output to
82 indicate the progress of the generation. A B<.> represents each number which
83 has passed an initial sieve test, B<+> means a number has passed a single
84 round of the Miller-Rabin primality test. A newline means that the number has
85 passed all the prime tests (the actual number depends on the key size).
86
87 Because key generation is a random process the time taken to generate a key
88 may vary somewhat.
89
90 =head1 BUGS
91
92 A quirk of the prime generation algorithm is that it cannot generate small
93 primes. Therefore the number of bits should not be less that 64. For typical
94 private keys this will not matter because for security reasons they will
95 be much larger (typically 1024 bits).
96
97 =head1 SEE ALSO
98
99 L<gendsa(1)>
100
101 =cut
102