openssl-dsa.pod.in 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. =pod
  2. =begin comment
  3. {- join("\n", @autowarntext) -}
  4. =end comment
  5. =head1 NAME
  6. openssl-dsa - DSA key processing
  7. =head1 SYNOPSIS
  8. B<openssl> B<dsa>
  9. [B<-help>]
  10. [B<-inform> B<DER>|B<PEM>]
  11. [B<-outform> B<DER>|B<PEM>]
  12. [B<-in> I<filename>]
  13. [B<-passin> I<arg>]
  14. [B<-out> I<filename>]
  15. [B<-passout> I<arg>]
  16. [B<-aes128>]
  17. [B<-aes192>]
  18. [B<-aes256>]
  19. [B<-aria128>]
  20. [B<-aria192>]
  21. [B<-aria256>]
  22. [B<-camellia128>]
  23. [B<-camellia192>]
  24. [B<-camellia256>]
  25. [B<-des>]
  26. [B<-des3>]
  27. [B<-idea>]
  28. [B<-text>]
  29. [B<-noout>]
  30. [B<-modulus>]
  31. [B<-pubin>]
  32. [B<-pubout>]
  33. [B<-pvk-strong>]
  34. [B<-pvk-weak>]
  35. [B<-pvk-none>]
  36. {- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_provider_synopsis -}
  37. =head1 DESCRIPTION
  38. This command processes DSA keys. They can be converted between various
  39. forms and their components printed out. B<Note> This command uses the
  40. traditional SSLeay compatible format for private key encryption: newer
  41. applications should use the more secure PKCS#8 format using the B<pkcs8>
  42. =head1 OPTIONS
  43. =over 4
  44. =item B<-help>
  45. Print out a usage message.
  46. =item B<-inform> B<DER>|B<PEM>
  47. The key input format; unspecified by default.
  48. See L<openssl-format-options(1)> for details.
  49. =item B<-outform> B<DER>|B<PEM>
  50. The key output format; the default is B<PEM>.
  51. See L<openssl-format-options(1)> for details.
  52. Private keys are a sequence of B<ASN.1 INTEGERS>: the version (zero), B<p>,
  53. B<q>, B<g>, and the public and private key components. Public keys
  54. are a B<SubjectPublicKeyInfo> structure with the B<DSA> type.
  55. The B<PEM> format also accepts PKCS#8 data.
  56. =item B<-in> I<filename>
  57. This specifies the input filename to read a key from or standard input if this
  58. option is not specified. If the key is encrypted a pass phrase will be
  59. prompted for.
  60. =item B<-out> I<filename>
  61. This specifies the output filename to write a key to or standard output by
  62. is not specified. If any encryption options are set then a pass phrase will be
  63. prompted for. The output filename should B<not> be the same as the input
  64. filename.
  65. =item B<-passin> I<arg>, B<-passout> I<arg>
  66. The password source for the input and output file.
  67. For more information about the format of B<arg>
  68. see L<openssl-passphrase-options(1)>.
  69. =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>
  70. These options encrypt the private key with the specified
  71. cipher before outputting it. A pass phrase is prompted for.
  72. If none of these options is specified the key is written in plain text. This
  73. means that this command can be used to remove the pass phrase from a key
  74. by not giving any encryption option is given, or to add or change the pass
  75. phrase by setting them.
  76. These options can only be used with PEM format output files.
  77. =item B<-text>
  78. Prints out the public, private key components and parameters.
  79. =item B<-noout>
  80. This option prevents output of the encoded version of the key.
  81. =item B<-modulus>
  82. This option prints out the value of the public key component of the key.
  83. =item B<-pubin>
  84. By default, a private key is read from the input.
  85. With this option a public key is read instead.
  86. If the input contains no public key but a private key, its public part is used.
  87. =item B<-pubout>
  88. By default, a private key is output. With this option a public
  89. key will be output instead. This option is automatically set if the input is
  90. a public key.
  91. =item B<-pvk-strong>
  92. Enable 'Strong' PVK encoding level (default).
  93. =item B<-pvk-weak>
  94. Enable 'Weak' PVK encoding level.
  95. =item B<-pvk-none>
  96. Don't enforce PVK encoding.
  97. {- $OpenSSL::safe::opt_engine_item -}
  98. {- $OpenSSL::safe::opt_provider_item -}
  99. =back
  100. The L<openssl-pkey(1)> command is capable of performing all the operations
  101. this command can, as well as supporting other public key types.
  102. =head1 EXAMPLES
  103. The documentation for the L<openssl-pkey(1)> command contains examples
  104. equivalent to the ones listed here.
  105. To remove the pass phrase on a DSA private key:
  106. openssl dsa -in key.pem -out keyout.pem
  107. To encrypt a private key using triple DES:
  108. openssl dsa -in key.pem -des3 -out keyout.pem
  109. To convert a private key from PEM to DER format:
  110. openssl dsa -in key.pem -outform DER -out keyout.der
  111. To print out the components of a private key to standard output:
  112. openssl dsa -in key.pem -text -noout
  113. To just output the public part of a private key:
  114. openssl dsa -in key.pem -pubout -out pubkey.pem
  115. =head1 SEE ALSO
  116. L<openssl(1)>,
  117. L<openssl-pkey(1)>,
  118. L<openssl-dsaparam(1)>,
  119. L<openssl-gendsa(1)>,
  120. L<openssl-rsa(1)>,
  121. L<openssl-genrsa(1)>
  122. =head1 HISTORY
  123. The B<-engine> option was deprecated in OpenSSL 3.0.
  124. =head1 COPYRIGHT
  125. Copyright 2000-2023 The OpenSSL Project Authors. All Rights Reserved.
  126. Licensed under the Apache License 2.0 (the "License"). You may not use
  127. this file except in compliance with the License. You can obtain a copy
  128. in the file LICENSE in the source distribution or at
  129. L<https://www.openssl.org/source/license.html>.
  130. =cut