openssl-gendsa.pod.in 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. =pod
  2. {- OpenSSL::safe::output_do_not_edit_headers(); -}
  3. =head1 NAME
  4. openssl-gendsa - generate a DSA private key from a set of parameters
  5. =head1 SYNOPSIS
  6. B<openssl> B<gendsa>
  7. [B<-help>]
  8. [B<-out> I<filename>]
  9. [B<-passout> I<arg>]
  10. [B<-aes128>]
  11. [B<-aes192>]
  12. [B<-aes256>]
  13. [B<-aria128>]
  14. [B<-aria192>]
  15. [B<-aria256>]
  16. [B<-camellia128>]
  17. [B<-camellia192>]
  18. [B<-camellia256>]
  19. [B<-des>]
  20. [B<-des3>]
  21. [B<-idea>]
  22. [B<-verbose>]
  23. {- $OpenSSL::safe::opt_r_synopsis -}
  24. {- $OpenSSL::safe::opt_engine_synopsis -}
  25. [I<paramfile>]
  26. =for openssl ifdef engine
  27. =head1 DESCRIPTION
  28. This command generates a DSA private key from a DSA parameter file
  29. (which will be typically generated by the L<openssl-dsaparam(1)> command).
  30. =head1 OPTIONS
  31. =over 4
  32. =item B<-help>
  33. Print out a usage message.
  34. =item B<-out> I<filename>
  35. Output the key to the specified file. If this argument is not specified then
  36. standard output is used.
  37. =item B<-passout> I<arg>
  38. The passphrase used for the output file.
  39. See L<openssl(1)/Pass Phrase Options>.
  40. =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>
  41. These options encrypt the private key with specified
  42. cipher before outputting it. A pass phrase is prompted for.
  43. If none of these options is specified no encryption is used.
  44. =item B<-verbose>
  45. Print extra details about the operations being performed.
  46. {- $OpenSSL::safe::opt_r_item -}
  47. {- $OpenSSL::safe::opt_engine_item -}
  48. =item I<paramfile>
  49. The DSA parameter file to use. The parameters in this file determine
  50. the size of the private key. DSA parameters can be generated and
  51. examined using the L<openssl-dsaparam(1)> command.
  52. =back
  53. =head1 NOTES
  54. DSA key generation is little more than random number generation so it is
  55. much quicker that RSA key generation for example.
  56. =head1 SEE ALSO
  57. L<openssl(1)>,
  58. L<openssl-dsaparam(1)>,
  59. L<openssl-dsa(1)>,
  60. L<openssl-genrsa(1)>,
  61. L<openssl-rsa(1)>
  62. =head1 COPYRIGHT
  63. Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
  64. Licensed under the Apache License 2.0 (the "License"). You may not use
  65. this file except in compliance with the License. You can obtain a copy
  66. in the file LICENSE in the source distribution or at
  67. L<https://www.openssl.org/source/license.html>.
  68. =cut