openssl-dsaparam.pod.in 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. =pod
  2. {- OpenSSL::safe::output_do_not_edit_headers(); -}
  3. =head1 NAME
  4. openssl-dsaparam - DSA parameter manipulation and generation
  5. =head1 SYNOPSIS
  6. B<openssl dsaparam>
  7. [B<-help>]
  8. [B<-inform> B<DER>|B<PEM>]
  9. [B<-outform> B<DER>|B<PEM>]
  10. [B<-in> I<filename>]
  11. [B<-out> I<filename>]
  12. [B<-noout>]
  13. [B<-text>]
  14. [B<-genkey>]
  15. [B<-verbose>]
  16. {- $OpenSSL::safe::opt_r_synopsis -}
  17. {- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_provider_synopsis -}
  18. [I<numbits>]
  19. =head1 DESCRIPTION
  20. This command is used to manipulate or generate DSA parameter files.
  21. DSA parameter generation can be a slow process and as a result the same set of
  22. DSA parameters is often used to generate several distinct keys.
  23. =head1 OPTIONS
  24. =over 4
  25. =item B<-help>
  26. Print out a usage message.
  27. =item B<-inform> B<DER>|B<PEM>, B<-outform> B<DER>|B<PEM>
  28. This option has become obsolete.
  29. See L<openssl-format-options(1)> for details.
  30. Parameters are a sequence of B<ASN.1 INTEGER>s: B<p>, B<q>, and B<g>.
  31. This is compatible with RFC 2459 B<DSS-Parms> structure.
  32. =item B<-in> I<filename>
  33. This specifies the input filename to read parameters from or standard input if
  34. this option is not specified. If the I<numbits> parameter is included then
  35. this option will be ignored.
  36. =item B<-out> I<filename>
  37. This specifies the output filename parameters to. Standard output is used
  38. if this option is not present. The output filename should B<not> be the same
  39. as the input filename.
  40. =item B<-noout>
  41. This option inhibits the output of the encoded version of the parameters.
  42. =item B<-text>
  43. This option prints out the DSA parameters in human readable form.
  44. =item B<-genkey>
  45. This option will generate a DSA either using the specified or generated
  46. parameters.
  47. =item B<-verbose>
  48. Print extra details about the operations being performed.
  49. {- $OpenSSL::safe::opt_r_item -}
  50. {- $OpenSSL::safe::opt_engine_item -}
  51. =item I<numbits>
  52. This option specifies that a parameter set should be generated of size
  53. I<numbits>. It must be the last option. If this option is included then
  54. the input file (if any) is ignored.
  55. {- $OpenSSL::safe::opt_provider_item -}
  56. =back
  57. =head1 SEE ALSO
  58. L<openssl(1)>,
  59. L<openssl-pkeyparam(1)>,
  60. L<openssl-gendsa(1)>,
  61. L<openssl-dsa(1)>,
  62. L<openssl-genrsa(1)>,
  63. L<openssl-rsa(1)>
  64. =head1 HISTORY
  65. The B<-engine> option was deprecated in OpenSSL 3.0.
  66. The B<-C> option was removed in OpenSSL 3.0.
  67. =head1 COPYRIGHT
  68. Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved.
  69. Licensed under the Apache License 2.0 (the "License"). You may not use
  70. this file except in compliance with the License. You can obtain a copy
  71. in the file LICENSE in the source distribution or at
  72. L<https://www.openssl.org/source/license.html>.
  73. =cut