undo: use MAX_TID for tid_max, or else HAMMER won't find the latest change
[dragonfly.git] / crypto / openssl / doc / apps / dhparam.pod
blobc31db95a473280833905003e7b327f25a8da4aea
1 =pod
3 =head1 NAME
5 dhparam - DH parameter manipulation and generation
7 =head1 SYNOPSIS
9 B<openssl dhparam>
10 [B<-inform DER|PEM>]
11 [B<-outform DER|PEM>]
12 [B<-in> I<filename>]
13 [B<-out> I<filename>]
14 [B<-dsaparam>]
15 [B<-noout>]
16 [B<-text>]
17 [B<-C>]
18 [B<-2>]
19 [B<-5>]
20 [B<-rand> I<file(s)>]
21 [B<-engine id>]
22 [I<numbits>]
24 =head1 DESCRIPTION
26 This command is used to manipulate DH parameter files.
28 =head1 OPTIONS
30 =over 4
32 =item B<-inform DER|PEM>
34 This specifies the input format. The B<DER> option uses an ASN1 DER encoded
35 form compatible with the PKCS#3 DHparameter structure. The PEM form is the
36 default format: it consists of the B<DER> format base64 encoded with
37 additional header and footer lines.
39 =item B<-outform DER|PEM>
41 This specifies the output format, the options have the same meaning as the 
42 B<-inform> option.
44 =item B<-in> I<filename>
46 This specifies the input filename to read parameters from or standard input if
47 this option is not specified.
49 =item B<-out> I<filename>
51 This specifies the output filename parameters to. Standard output is used
52 if this option is not present. The output filename should B<not> be the same
53 as the input filename.
55 =item B<-dsaparam>
57 If this option is used, DSA rather than DH parameters are read or created;
58 they are converted to DH format.  Otherwise, "strong" primes (such
59 that (p-1)/2 is also prime) will be used for DH parameter generation.
61 DH parameter generation with the B<-dsaparam> option is much faster,
62 and the recommended exponent length is shorter, which makes DH key
63 exchange more efficient.  Beware that with such DSA-style DH
64 parameters, a fresh DH key should be created for each use to
65 avoid small-subgroup attacks that may be possible otherwise.
67 =item B<-2>, B<-5>
69 The generator to use, either 2 or 5. 2 is the default. If present then the
70 input file is ignored and parameters are generated instead.
72 =item B<-rand> I<file(s)>
74 a file or files containing random data used to seed the random number
75 generator, or an EGD socket (see L<RAND_egd(3)|RAND_egd(3)>).
76 Multiple files can be specified separated by a OS-dependent character.
77 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
78 all others.
80 =item I<numbits>
82 this option specifies that a parameter set should be generated of size
83 I<numbits>. It must be the last option. If not present then a value of 512
84 is used. If this option is present then the input file is ignored and 
85 parameters are generated instead.
87 =item B<-noout>
89 this option inhibits the output of the encoded version of the parameters.
91 =item B<-text>
93 this option prints out the DH parameters in human readable form.
95 =item B<-C>
97 this option converts the parameters into C code. The parameters can then
98 be loaded by calling the B<get_dh>I<numbits>B<()> function.
100 =item B<-engine id>
102 specifying an engine (by it's unique B<id> string) will cause B<req>
103 to attempt to obtain a functional reference to the specified engine,
104 thus initialising it if needed. The engine will then be set as the default
105 for all available algorithms.
107 =back
109 =head1 WARNINGS
111 The program B<dhparam> combines the functionality of the programs B<dh> and
112 B<gendh> in previous versions of OpenSSL and SSLeay. The B<dh> and B<gendh>
113 programs are retained for now but may have different purposes in future 
114 versions of OpenSSL.
116 =head1 NOTES
118 PEM format DH parameters use the header and footer lines:
120  -----BEGIN DH PARAMETERS-----
121  -----END DH PARAMETERS-----
123 OpenSSL currently only supports the older PKCS#3 DH, not the newer X9.42
126 This program manipulates DH parameters not keys.
128 =head1 BUGS
130 There should be a way to generate and manipulate DH keys.
132 =head1 SEE ALSO
134 L<dsaparam(1)|dsaparam(1)>
136 =head1 HISTORY
138 The B<dhparam> command was added in OpenSSL 0.9.5.
139 The B<-dsaparam> option was added in OpenSSL 0.9.6.
141 =cut