openssl-version.pod 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. =pod
  2. =head1 NAME
  3. openssl-version - print OpenSSL version information
  4. =head1 SYNOPSIS
  5. B<openssl version>
  6. [B<-help>]
  7. [B<-a>]
  8. [B<-v>]
  9. [B<-b>]
  10. [B<-o>]
  11. [B<-f>]
  12. [B<-p>]
  13. [B<-d>]
  14. [B<-e>]
  15. [B<-m>]
  16. [B<-r>]
  17. [B<-c>]
  18. =head1 DESCRIPTION
  19. This command is used to print out version information about OpenSSL.
  20. =head1 OPTIONS
  21. =over 4
  22. =item B<-help>
  23. Print out a usage message.
  24. =item B<-a>
  25. All information, this is the same as setting all the other flags.
  26. =item B<-v>
  27. The current OpenSSL version.
  28. =item B<-b>
  29. The date the current version of OpenSSL was built.
  30. =item B<-o>
  31. Option information: various options set when the library was built.
  32. =item B<-f>
  33. Compilation flags.
  34. =item B<-p>
  35. Platform setting.
  36. =item B<-d>
  37. OPENSSLDIR setting.
  38. =item B<-e>
  39. ENGINESDIR settings.
  40. =item B<-m>
  41. MODULESDIR settings.
  42. =item B<-r>
  43. The random number generator source settings.
  44. =item B<-c>
  45. The OpenSSL CPU settings info.
  46. =back
  47. =head1 NOTES
  48. The output of C<openssl version -a> would typically be used when sending
  49. in a bug report.
  50. =head1 COPYRIGHT
  51. Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
  52. Licensed under the Apache License 2.0 (the "License"). You may not use
  53. this file except in compliance with the License. You can obtain a copy
  54. in the file LICENSE in the source distribution or at
  55. L<https://www.openssl.org/source/license.html>.
  56. =cut