list.pod 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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<-mac-algorithms>]
  13. [B<-cipher-commands>]
  14. [B<-cipher-algorithms>]
  15. [B<-public-key-algorithms>]
  16. [B<-public-key-methods>]
  17. [B<-engines>]
  18. [B<-disabled>]
  19. =head1 DESCRIPTION
  20. This command is used to generate list of algorithms or disabled
  21. features.
  22. =head1 OPTIONS
  23. =over 4
  24. =item B<-help>
  25. Display a usage message.
  26. =item B<-1>
  27. List the commands, digest-commands, or cipher-commands in a single column.
  28. If used, this option must be given first.
  29. =item B<-commands>
  30. Display a list of standard commands.
  31. =item B<-digest-commands>
  32. Display a list of message digest commands, which are typically used
  33. as input to the L<dgst(1)> or L<speed(1)> commands.
  34. =item B<-digest-algorithms>
  35. Display a list of message digest algorithms.
  36. If a line is of the form C<foo =E<gt> bar> then B<foo> is an alias for the
  37. official algorithm name, B<bar>.
  38. =item B<-mac-algorithms>
  39. Display a list of message authentication code algorithms.
  40. If a line is of the form C<foo =E<gt> bar> then B<foo> is an alias for the
  41. official algorithm name, B<bar>.
  42. =item B<-cipher-commands>
  43. Display a list of cipher commands, which are typically used as input
  44. to the L<dgst(1)> or L<speed(1)> commands.
  45. =item B<-cipher-algorithms>
  46. Display a list of cipher algorithms.
  47. If a line is of the form C<foo =E<gt> bar> then B<foo> is an alias for the
  48. official algorithm name, B<bar>.
  49. =item B<-public-key-algorithms>
  50. Display a list of public key algorithms, with each algorithm as
  51. a block of multiple lines, all but the first are indented.
  52. =item B<-public-key-methods>
  53. Display a list of public key method OIDs: this also includes public key methods
  54. without an associated ASN.1 method, for example, KDF algorithms.
  55. =item B<-engines>
  56. Display a list of loaded engines.
  57. =item B<-disabled>
  58. Display a list of disabled features, those that were compiled out
  59. of the installation.
  60. =item B<-objects>
  61. Display a list of built in objects, i.e. OIDs with names. They're listed in the
  62. format described in L<config(5)/ASN1 Object Configuration Module>.
  63. =back
  64. =head1 COPYRIGHT
  65. Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
  66. Licensed under the Apache License 2.0 (the "License"). You may not use
  67. this file except in compliance with the License. You can obtain a copy
  68. in the file LICENSE in the source distribution or at
  69. L<https://www.openssl.org/source/license.html>.
  70. =cut