list.pod 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. =pod
  2. =head1 NAME
  3. openssl-list,
  4. list - list algorithms and features
  5. =head1 SYNOPSIS
  6. B<openssl list>
  7. [B<-help>]
  8. [B<-1>]
  9. [B<-commands>]
  10. [B<-digest-commands>]
  11. [B<-digest-algorithms>]
  12. [B<-cipher-commands>]
  13. [B<-cipher-algorithms>]
  14. [B<-public-key-algorithms>]
  15. [B<-public-key-methods>]
  16. [B<-disabled>]
  17. =head1 DESCRIPTION
  18. This command is used to generate list of algorithms or disabled
  19. features.
  20. =head1 OPTIONS
  21. =over 4
  22. =item B<-help>
  23. Display a usage message.
  24. =item B<-1>
  25. List the commands, digest-commands, or cipher-commands in a single column.
  26. If used, this option must be given first.
  27. =item B<-commands>
  28. Display a list of standard commands.
  29. =item B<-digest-commands>
  30. Display a list of message digest commands, which are typically used
  31. as input to the L<dgst(1)> or L<speed(1)> commands.
  32. =item B<-digest-algorithms>
  33. Display a list of message digest algorithms.
  34. If a line is of the form
  35. foo => bar
  36. then B<foo> is an alias for the official algorithm name, B<bar>.
  37. =item B<-cipher-commands>
  38. Display a list of cipher commands, which are typically used as input
  39. to the L<dgst(1)> or L<speed(1)> commands.
  40. =item B<-cipher-algorithms>
  41. Display a list of cipher algorithms.
  42. If a line is of the form
  43. foo => bar
  44. then B<foo> is an alias for the official algorithm name, B<bar>.
  45. =item B<-public-key-algorithms>
  46. Display a list of public key algorithms, with each algorithm as
  47. a block of multiple lines, all but the first are indented.
  48. =item B<-public-key-methods>
  49. Display a list of public key method OIDs: this also includes public key methods
  50. without an associated ASN.1 method, for example, KDF algorithms.
  51. =item B<-disabled>
  52. Display a list of disabled features, those that were compiled out
  53. of the installation.
  54. =back
  55. =head1 COPYRIGHT
  56. Copyright 2016-2017 The OpenSSL Project Authors. All Rights Reserved.
  57. Licensed under the OpenSSL license (the "License"). You may not use
  58. this file except in compliance with the License. You can obtain a copy
  59. in the file LICENSE in the source distribution or at
  60. L<https://www.openssl.org/source/license.html>.
  61. =cut