openssl-list.pod.in 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. =pod
  2. {- OpenSSL::safe::output_do_not_edit_headers(); -}
  3. =head1 NAME
  4. openssl-list - list algorithms and features
  5. =head1 SYNOPSIS
  6. B<openssl list>
  7. [B<-help>]
  8. [B<-verbose>]
  9. [B<-select> I<name>]
  10. [B<-1>]
  11. [B<-all-algorithms>]
  12. [B<-commands>]
  13. [B<-standard-commands>]
  14. [B<-digest-algorithms>]
  15. {- output_off() if $disabled{"deprecated-3.0"}; ""
  16. -}[B<-digest-commands>]
  17. {- output_on() if $disabled{"deprecated-3.0"}; ""
  18. -}[B<-kdf-algorithms>]
  19. [B<-mac-algorithms>]
  20. [B<-random-instances>]
  21. [B<-random-generators>]
  22. [B<-cipher-algorithms>]
  23. {- output_off() if $disabled{"deprecated-3.0"}; ""
  24. -}[B<-cipher-commands>]
  25. {- output_on() if $disabled{"deprecated-3.0"}; ""
  26. -}[B<-encoders>]
  27. [B<-decoders>]
  28. [B<-key-managers>]
  29. [B<-key-exchange-algorithms>]
  30. [B<-kem-algorithms>]
  31. [B<-signature-algorithms>]
  32. [B<-asymcipher-algorithms>]
  33. [B<-public-key-algorithms>]
  34. [B<-public-key-methods>]
  35. [B<-store-loaders>]
  36. [B<-providers>]
  37. {- output_off() if $disabled{"deprecated-3.0"}; ""
  38. -}[B<-engines>]
  39. {- output_on() if $disabled{"deprecated-3.0"}; ""
  40. -}[B<-disabled>]
  41. [B<-objects>]
  42. [B<-options> I<command>]
  43. {- $OpenSSL::safe::opt_provider_synopsis -}
  44. =head1 DESCRIPTION
  45. This command is used to generate list of algorithms or disabled
  46. features.
  47. =head1 OPTIONS
  48. =over 4
  49. =item B<-help>
  50. Display a usage message.
  51. =item B<-verbose>
  52. Displays extra information.
  53. The options below where verbosity applies say a bit more about what that means.
  54. =item B<-select> I<name>
  55. Only list algorithms that match this name.
  56. =item B<-1>
  57. List the commands, digest-commands, or cipher-commands in a single column.
  58. If used, this option must be given first.
  59. =item B<-all-algorithms>
  60. Display lists of all algorithms. These include:
  61. =over 4
  62. =item Asymmetric ciphers
  63. =item Decoders
  64. =item Digests
  65. =item Encoders
  66. =item Key derivation algorithms (KDF)
  67. =item Key encapsulation methods (KEM)
  68. =item Key exchange algorithms (KEX)
  69. =item Key managers
  70. =item Message authentication code algorithms (MAC)
  71. =item Random number generators (RNG, DRBG)
  72. =item Signature algorithms
  73. =item Store loaders
  74. =item Symmetric ciphers
  75. =back
  76. =item B<-commands>
  77. Display a list of standard commands.
  78. =item B<-standard-commands>
  79. List of standard commands.
  80. =item B<-digest-commands>
  81. This option is deprecated. Use B<digest-algorithms> instead.
  82. Display a list of message digest commands, which are typically used
  83. as input to the L<openssl-dgst(1)> or L<openssl-speed(1)> commands.
  84. =item B<-cipher-commands>
  85. This option is deprecated. Use B<cipher-algorithms> instead.
  86. Display a list of cipher commands, which are typically used as input
  87. to the L<openssl-enc(1)> or L<openssl-speed(1)> commands.
  88. =item B<-cipher-algorithms>, B<-digest-algorithms>, B<-kdf-algorithms>,
  89. B<-mac-algorithms>,
  90. Display a list of symmetric cipher, digest, kdf and mac algorithms.
  91. See L</Display of algorithm names> for a description of how names are
  92. displayed.
  93. In verbose mode, the algorithms provided by a provider will get additional
  94. information on what parameters each implementation supports.
  95. =item B<-random-instances>
  96. List the primary, public and private random number generator details.
  97. =item B<-random-generators>
  98. Display a list of random number generators.
  99. See L</Display of algorithm names> for a description of how names are
  100. displayed.
  101. =item B<-encoders>
  102. Display a list of encoders.
  103. See L</Display of algorithm names> for a description of how names are
  104. displayed.
  105. In verbose mode, the algorithms provided by a provider will get additional
  106. information on what parameters each implementation supports.
  107. =item B<-decoders>
  108. Display a list of decoders.
  109. See L</Display of algorithm names> for a description of how names are
  110. displayed.
  111. In verbose mode, the algorithms provided by a provider will get additional
  112. information on what parameters each implementation supports.
  113. =item B<-public-key-algorithms>
  114. Display a list of public key algorithms, with each algorithm as
  115. a block of multiple lines, all but the first are indented.
  116. The options B<key-exchange-algorithms>, B<kem-algorithms>,
  117. B<signature-algorithms>, and B<asymcipher-algorithms> will display similar info.
  118. =item B<-public-key-methods>
  119. Display a list of public key methods.
  120. =item B<-key-managers>
  121. Display a list of key managers.
  122. =item B<-key-exchange-algorithms>
  123. Display a list of key exchange algorithms.
  124. =item B<-kem-algorithms>
  125. Display a list of key encapsulation algorithms.
  126. =item B<-signature-algorithms>
  127. Display a list of signature algorithms.
  128. =item B<-asymcipher-algorithms>
  129. Display a list of asymmetric cipher algorithms.
  130. =item B<-store-loaders>
  131. Display a list of store loaders.
  132. =item B<-providers>
  133. Display a list of all loaded providers with their names, version and status.
  134. In verbose mode, the full version and all provider parameters will additionally
  135. be displayed.
  136. =item B<-engines>
  137. This option is deprecated.
  138. Display a list of loaded engines.
  139. =item B<-disabled>
  140. Display a list of disabled features, those that were compiled out
  141. of the installation.
  142. =item B<-objects>
  143. Display a list of built in objects, i.e. OIDs with names. They're listed in the
  144. format described in L<config(5)/ASN1 Object Configuration Module>.
  145. =item B<-options> I<command>
  146. Output a two-column list of the options accepted by the specified I<command>.
  147. The first is the option name, and the second is a one-character indication
  148. of what type of parameter it takes, if any.
  149. This is an internal option, used for checking that the documentation
  150. is complete.
  151. {- $OpenSSL::safe::opt_provider_item -}
  152. =back
  153. =head2 Display of algorithm names
  154. Algorithm names may be displayed in one of two manners:
  155. =over 4
  156. =item Legacy implementations
  157. Legacy implementations will simply display the main name of the
  158. algorithm on a line of its own, or in the form C<<foo > bar>> to show
  159. that C<foo> is an alias for the main name, C<bar>
  160. =item Provided implementations
  161. Implementations from a provider are displayed like this if the
  162. implementation is labeled with a single name:
  163. foo @ bar
  164. or like this if it's labeled with multiple names:
  165. { foo1, foo2 } @bar
  166. In both cases, C<bar> is the name of the provider.
  167. =back
  168. =head1 HISTORY
  169. The B<-engines>, B<-digest-commands>, and B<-cipher-commands> options
  170. were deprecated in OpenSSL 3.0.
  171. =head1 COPYRIGHT
  172. Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
  173. Licensed under the Apache License 2.0 (the "License"). You may not use
  174. this file except in compliance with the License. You can obtain a copy
  175. in the file LICENSE in the source distribution or at
  176. L<https://www.openssl.org/source/license.html>.
  177. =cut