info.pod 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. =pod
  2. =head1 NAME
  3. openssl-info,
  4. info - print OpenSSL built-in information
  5. =head1 SYNOPSIS
  6. B<openssl info>
  7. [B<-help>]
  8. [B<-configdir> | B<-c>]
  9. [B<-enginesdir> | B<-e>]
  10. [B<-modulesdir> | B<-m>]
  11. [B<-dsoext>]
  12. [B<-dirfilesep>]
  13. [B<-listsep]>
  14. =head1 DESCRIPTION
  15. This command is used to print out information about OpenSSL.
  16. The information is written exactly as it is with no extra text, which
  17. makes useful for scripts.
  18. As a consequence, only one item may be chosen for each run of this
  19. command.
  20. =head1 OPTIONS
  21. =over 4
  22. =item B<-help>
  23. Print out a usage message.
  24. =item B<-configdir>, B<-c>
  25. Outputs the default directory for OpenSSL configuration files.
  26. =item B<-enginesdir>, B<-e>
  27. Outputs the default directory for OpenSSL engine modules.
  28. =item B<-modulesdir>, B<-m>
  29. Outputs the default directory for OpenSSL dynamically loadable modules
  30. other than engine modules.
  31. =item B<-dsoext>
  32. Outputs the DSO extension OpenSSL uses.
  33. =item B<-dirnamesep>
  34. Outputs the separator character between a directory specification and
  35. a file name.
  36. Note that on some operating systems, this is not the same as the
  37. separator between directory elements.
  38. =item B<-listsep>
  39. Outputs the OpenSSL list separator character.
  40. This is typically used to construct C<$PATH> (C<%PATH%> on Windows)
  41. style lists.
  42. =back
  43. =head1 HISTORY
  44. The B<openssl info> command was added in OpenSSL 3.0.
  45. =head1 COPYRIGHT
  46. Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
  47. Licensed under the Apache License 2.0 (the "License"). You may not use
  48. this file except in compliance with the License. You can obtain a copy
  49. in the file LICENSE in the source distribution or at
  50. L<https://www.openssl.org/source/license.html>.
  51. =cut