]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/apps/dhparam.pod
New '-dsaparam' option for 'openssl dhparam', and related fixes.
[thirdparty/openssl.git] / doc / apps / dhparam.pod
CommitLineData
ef7eaa4c
DSH
1=pod
2
3=head1 NAME
4
09483c58 5dhparam - DH parameter manipulation and generation
ef7eaa4c
DSH
6
7=head1 SYNOPSIS
8
41918458 9B<openssl dhparam>
ef7eaa4c
DSH
10[B<-inform DER|PEM>]
11[B<-outform DER|PEM>]
41918458
BM
12[B<-in> I<filename>]
13[B<-out> I<filename>]
14[B<-dsaparam>]
ef7eaa4c
DSH
15[B<-noout>]
16[B<-text>]
17[B<-C>]
09483c58
DSH
18[B<-2>]
19[B<-5>]
41918458
BM
20[B<-rand> I<file(s)>]
21[I<numbits>]
ef7eaa4c
DSH
22
23=head1 DESCRIPTION
24
25This command is used to manipulate DH parameter files.
26
27=head1 OPTIONS
28
29=over 4
30
31=item B<-inform DER|PEM>
32
33This specifies the input format. The B<DER> option uses an ASN1 DER encoded
34form compatible with the PKCS#3 DHparameter structure. The PEM form is the
35default format: it consists of the B<DER> format base64 encoded with
36additional header and footer lines.
37
38=item B<-outform DER|PEM>
39
40This specifies the output format, the options have the same meaning as the
41B<-inform> option.
42
41918458 43=item B<-in> I<filename>
ef7eaa4c
DSH
44
45This specifies the input filename to read parameters from or standard input if
46this option is not specified.
47
41918458 48=item B<-out> I<filename>
ef7eaa4c
DSH
49
50This specifies the output filename parameters to. Standard output is used
51if this option is not present. The output filename should B<not> be the same
52as the input filename.
53
41918458
BM
54=item B<-dsaparam>
55
56If this option is used, DSA rather than DH parameters are read or created;
57they are converted to DH format. Otherwise, "strong" primes (such
58that (p-1)/2 is also prime) will be used for DH parameter generation.
59
60DH parameter generation with the B<-dsaparam> option is much faster,
61and the recommended exponent length is shorter, which makes DH key
62exchange more efficient. Beware that with such DSA-style DH
63parameters, a fresh DH key should be created for each use to
64avoid small-subgroup attacks that may be possible otherwise.
65
09483c58
DSH
66=item B<-2>, B<-5>
67
68The generator to use, either 2 or 5. 2 is the default. If present then the
69input file is ignored and parameters are generated instead.
70
41918458 71=item B<-rand> I<file(s)>
09483c58
DSH
72
73a file or files containing random data used to seed the random number
a4cfd178
UM
74generator, or an EGD socket (see L<RAND_egd(3)|RAND_egd(3)>).
75Multiple files can be specified separated by a OS-dependent character.
76The separator is B<;> for MS-Windows, B<,> for OpenVSM, and B<:> for
77all others.
09483c58 78
41918458 79=item I<numbits>
09483c58
DSH
80
81this option specifies that a parameter set should be generated of size
41918458 82I<numbits>. It must be the last option. If not present then a value of 512
09483c58
DSH
83is used. If this option is present then the input file is ignored and
84parameters are generated instead.
85
ef7eaa4c
DSH
86=item B<-noout>
87
88this option inhibits the output of the encoded version of the parameters.
89
90=item B<-text>
91
92this option prints out the DH parameters in human readable form.
93
94=item B<-C>
95
96this option converts the parameters into C code. The parameters can then
41918458 97be loaded by calling the B<get_dh>I<numbits>B<()> function.
ef7eaa4c
DSH
98
99=back
100
09483c58
DSH
101=head1 WARNINGS
102
103The program B<dhparam> combines the functionality of the programs B<dh> and
104B<gendh> in previous versions of OpenSSL and SSLeay. The B<dh> and B<gendh>
105programs are retained for now but may have different purposes in future
106versions of OpenSSL.
107
ef7eaa4c
DSH
108=head1 NOTES
109
110PEM format DH parameters use the header and footer lines:
111
112 -----BEGIN DH PARAMETERS-----
113 -----END DH PARAMETERS-----
114
115OpenSSL currently only supports the older PKCS#3 DH, not the newer X9.42
116DH.
117
118This program manipulates DH parameters not keys.
119
120=head1 BUGS
121
ef7eaa4c
DSH
122There should be a way to generate and manipulate DH keys.
123
124=head1 SEE ALSO
125
bb075f88 126L<dsaparam(1)|dsaparam(1)>
ef7eaa4c 127
41918458
BM
128=head1 HISTORY
129
130The B<dhparam> command was added in OpenSSL 0.9.5.
131The B<-dsaparam> option was added in OpenSSL 0.9.6.
132
ef7eaa4c 133=cut