5 gendsa - generate a DSA private key from a set of parameters
26 The B<gendsa> command generates a DSA private key from a DSA parameter file
27 (which will be typically generated by the B<openssl dsaparam> command).
33 =item B<-aes128|-aes192|-aes256|-camellia128|-camellia192|-camellia256|-des|-des3|-idea>
35 These options encrypt the private key with specified
36 cipher before outputting it. A pass phrase is prompted for.
37 If none of these options is specified no encryption is used.
39 =item B<-rand file(s)>
41 a file or files containing random data used to seed the random number
42 generator, or an EGD socket (see L<RAND_egd(3)|RAND_egd(3)>).
43 Multiple files can be specified separated by a OS-dependent character.
44 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
49 specifying an engine (by its unique B<id> string) will cause B<gendsa>
50 to attempt to obtain a functional reference to the specified engine,
51 thus initialising it if needed. The engine will then be set as the default
52 for all available algorithms.
56 This option specifies the DSA parameter file to use. The parameters in this
57 file determine the size of the private key. DSA parameters can be generated
58 and examined using the B<openssl dsaparam> command.
64 DSA key generation is little more than random number generation so it is
65 much quicker that RSA key generation for example.
69 L<dsaparam(1)|dsaparam(1)>, L<dsa(1)|dsa(1)>, L<genrsa(1)|genrsa(1)>,