cmdline app: add provider commandline options.
[openssl.git] / doc / man1 / openssl-gendsa.pod.in
1 =pod
2 {- OpenSSL::safe::output_do_not_edit_headers(); -}
3
4 =head1 NAME
5
6 openssl-gendsa - generate a DSA private key from a set of parameters
7
8 =head1 SYNOPSIS
9
10 B<openssl> B<gendsa>
11 [B<-help>]
12 [B<-out> I<filename>]
13 [B<-passout> I<arg>]
14 [B<-aes128>]
15 [B<-aes192>]
16 [B<-aes256>]
17 [B<-aria128>]
18 [B<-aria192>]
19 [B<-aria256>]
20 [B<-camellia128>]
21 [B<-camellia192>]
22 [B<-camellia256>]
23 [B<-des>]
24 [B<-des3>]
25 [B<-idea>]
26 [B<-verbose>]
27 {- $OpenSSL::safe::opt_r_synopsis -}
28 {- $OpenSSL::safe::opt_engine_synopsis -}
29 {- $OpenSSL::safe::opt_provider_synopsis -}
30 [I<paramfile>]
31
32 =for openssl ifdef engine
33
34 =head1 DESCRIPTION
35
36 This command has been deprecated.
37 The L<openssl-genpkey(1)> command should be used instead.
38
39 This command generates a DSA private key from a DSA parameter file
40 (which will be typically generated by the L<openssl-dsaparam(1)> command).
41
42 =head1 OPTIONS
43
44 =over 4
45
46 =item B<-help>
47
48 Print out a usage message.
49
50 =item B<-out> I<filename>
51
52 Output the key to the specified file. If this argument is not specified then
53 standard output is used.
54
55 =item B<-passout> I<arg>
56
57 The passphrase used for the output file.
58 See L<openssl(1)/Pass Phrase Options>.
59
60 =item B<-aes128>, B<-aes192>, B<-aes256>, B<-aria128>, B<-aria192>, B<-aria256>, B<-camellia128>, B<-camellia192>, B<-camellia256>, B<-des>, B<-des3>, B<-idea>
61
62 These options encrypt the private key with specified
63 cipher before outputting it. A pass phrase is prompted for.
64 If none of these options is specified no encryption is used.
65
66 =item B<-verbose>
67
68 Print extra details about the operations being performed.
69
70 {- $OpenSSL::safe::opt_r_item -}
71
72 {- $OpenSSL::safe::opt_engine_item -}
73
74 =item I<paramfile>
75
76 The DSA parameter file to use. The parameters in this file determine
77 the size of the private key. DSA parameters can be generated and
78 examined using the L<openssl-dsaparam(1)> command.
79
80 {- $OpenSSL::safe::opt_provider_item -}
81
82 =back
83
84 =head1 NOTES
85
86 DSA key generation is little more than random number generation so it is
87 much quicker that RSA key generation for example.
88
89 =head1 SEE ALSO
90
91 L<openssl(1)>,
92 L<openssl-genpkey(1)>,
93 L<openssl-dsaparam(1)>,
94 L<openssl-dsa(1)>,
95 L<openssl-genrsa(1)>,
96 L<openssl-rsa(1)>
97
98 =head1 HISTORY
99
100 This command was deprecated in OpenSSL 3.0.
101
102 =head1 COPYRIGHT
103
104 Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
105
106 Licensed under the Apache License 2.0 (the "License").  You may not use
107 this file except in compliance with the License.  You can obtain a copy
108 in the file LICENSE in the source distribution or at
109 L<https://www.openssl.org/source/license.html>.
110
111 =cut