Refactor -engine documentation
[openssl.git] / doc / man1 / openssl-dhparam.pod.in
1 =pod
2 {- OpenSSL::safe::output_do_not_edit_headers(); -}
3
4 =head1 NAME
5
6 openssl-dhparam - DH parameter manipulation and generation
7
8 =head1 SYNOPSIS
9
10 B<openssl dhparam>
11 [B<-help>]
12 [B<-inform> B<DER>|B<PEM>]
13 [B<-outform> B<DER>|B<PEM>]
14 [B<-in> I<filename>]
15 [B<-out> I<filename>]
16 [B<-dsaparam>]
17 [B<-check>]
18 [B<-noout>]
19 [B<-text>]
20 [B<-C>]
21 [B<-2>]
22 [B<-3>]
23 [B<-5>]
24 {- $OpenSSL::safe::opt_engine_synopsis -}
25 {- $OpenSSL::safe::opt_r_synopsis -}
26 [I<numbits>]
27
28 =for openssl ifdef dsaparam engine
29
30 =head1 DESCRIPTION
31
32 This command is used to manipulate DH parameter files.
33
34 =head1 OPTIONS
35
36 =over 4
37
38 =item B<-help>
39
40 Print out a usage message.
41
42 =item B<-inform> B<DER>|B<PEM>, B<-outform> B<DER>|B<PEM>
43
44 The input format and output format; the default is B<PEM>.
45 The object is compatible with the PKCS#3 B<DHparameter> structure.
46 See L<openssl(1)/Format Options> for details.
47
48 =item B<-in> I<filename>
49
50 This specifies the input filename to read parameters from or standard input if
51 this option is not specified.
52
53 =item B<-out> I<filename>
54
55 This specifies the output filename parameters to. Standard output is used
56 if this option is not present. The output filename should B<not> be the same
57 as the input filename.
58
59 =item B<-dsaparam>
60
61 If this option is used, DSA rather than DH parameters are read or created;
62 they are converted to DH format.  Otherwise, "strong" primes (such
63 that (p-1)/2 is also prime) will be used for DH parameter generation.
64
65 DH parameter generation with the B<-dsaparam> option is much faster,
66 and the recommended exponent length is shorter, which makes DH key
67 exchange more efficient.  Beware that with such DSA-style DH
68 parameters, a fresh DH key should be created for each use to
69 avoid small-subgroup attacks that may be possible otherwise.
70
71 =item B<-check>
72
73 Performs numerous checks to see if the supplied parameters are valid and
74 displays a warning if not.
75
76 =item B<-2>, B<-3>, B<-5>
77
78 The generator to use, either 2, 3 or 5. If present then the
79 input file is ignored and parameters are generated instead. If not
80 present but I<numbits> is present, parameters are generated with the
81 default generator 2.
82
83 =item I<numbits>
84
85 This option specifies that a parameter set should be generated of size
86 I<numbits>. It must be the last option. If this option is present then
87 the input file is ignored and parameters are generated instead. If
88 this option is not present but a generator (B<-2>, B<-3> or B<-5>) is
89 present, parameters are generated with a default length of 2048 bits.
90 The minimim length is 512 bits. The maximum length is 10000 bits.
91
92 =item B<-noout>
93
94 This option inhibits the output of the encoded version of the parameters.
95
96 =item B<-text>
97
98 This option prints out the DH parameters in human readable form.
99
100 =item B<-C>
101
102 This option converts the parameters into C code. The parameters can then
103 be loaded by calling the get_dhNNNN() function.
104
105 {- $OpenSSL::safe::opt_engine_item -}
106
107 {- $OpenSSL::safe::opt_r_item -}
108
109 =back
110
111 =head1 WARNINGS
112
113 This command combines the functionality of the L<openssl-dh(1)> and the
114 L<openssl-gendh(1)> commands in previous OpenSSL versions.
115 The L<openssl-dh(1)> and L<openssl-gendh(1)> commands are retained for now but
116 may have different purposes in future versions of OpenSSL.
117
118 =head1 NOTES
119
120 OpenSSL currently only supports the older PKCS#3 DH, not the newer X9.42
121 DH.
122
123 This program manipulates DH parameters not keys.
124
125 =head1 BUGS
126
127 There should be a way to generate and manipulate DH keys.
128
129 =head1 SEE ALSO
130
131 L<openssl(1)>,
132 L<openssl-dsaparam(1)>
133
134 =head1 COPYRIGHT
135
136 Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
137
138 Licensed under the Apache License 2.0 (the "License").  You may not use
139 this file except in compliance with the License.  You can obtain a copy
140 in the file LICENSE in the source distribution or at
141 L<https://www.openssl.org/source/license.html>.
142
143 =cut