2
0

list.pod 2.4 KB

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