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