Deleted Added
full compact
genrsa.pod (68651) genrsa.pod (111147)
1=pod
2
3=head1 NAME
4
5genrsa - generate an RSA private key
6
7=head1 SYNOPSIS
8
9B<openssl> B<genrsa>
10[B<-out filename>]
11[B<-passout arg>]
12[B<-des>]
13[B<-des3>]
14[B<-idea>]
15[B<-f4>]
16[B<-3>]
17[B<-rand file(s)>]
1=pod
2
3=head1 NAME
4
5genrsa - generate an RSA private key
6
7=head1 SYNOPSIS
8
9B<openssl> B<genrsa>
10[B<-out filename>]
11[B<-passout arg>]
12[B<-des>]
13[B<-des3>]
14[B<-idea>]
15[B<-f4>]
16[B<-3>]
17[B<-rand file(s)>]
18[B<-engine id>]
18[B<numbits>]
19
20=head1 DESCRIPTION
21
22The B<genrsa> command generates an RSA private key.
23
24=head1 OPTIONS
25

--- 23 unchanged lines hidden (view full) ---

49=item B<-rand file(s)>
50
51a file or files containing random data used to seed the random number
52generator, or an EGD socket (see L<RAND_egd(3)|RAND_egd(3)>).
53Multiple files can be specified separated by a OS-dependent character.
54The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
55all others.
56
19[B<numbits>]
20
21=head1 DESCRIPTION
22
23The B<genrsa> command generates an RSA private key.
24
25=head1 OPTIONS
26

--- 23 unchanged lines hidden (view full) ---

50=item B<-rand file(s)>
51
52a file or files containing random data used to seed the random number
53generator, or an EGD socket (see L<RAND_egd(3)|RAND_egd(3)>).
54Multiple files can be specified separated by a OS-dependent character.
55The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
56all others.
57
58=item B<-engine id>
59
60specifying an engine (by it's unique B<id> string) will cause B<req>
61to attempt to obtain a functional reference to the specified engine,
62thus initialising it if needed. The engine will then be set as the default
63for all available algorithms.
64
57=item B<numbits>
58
59the size of the private key to generate in bits. This must be the last option
60specified. The default is 512.
61
62=back
63
64=head1 NOTES

--- 24 unchanged lines hidden ---
65=item B<numbits>
66
67the size of the private key to generate in bits. This must be the last option
68specified. The default is 512.
69
70=back
71
72=head1 NOTES

--- 24 unchanged lines hidden ---