1 | =pod
|
---|
2 | {- OpenSSL::safe::output_do_not_edit_headers(); -}
|
---|
3 |
|
---|
4 | =head1 NAME
|
---|
5 |
|
---|
6 | openssl-version - print OpenSSL version information
|
---|
7 |
|
---|
8 | =head1 SYNOPSIS
|
---|
9 |
|
---|
10 | B<openssl version>
|
---|
11 | [B<-help>]
|
---|
12 | [B<-a>]
|
---|
13 | [B<-v>]
|
---|
14 | [B<-b>]
|
---|
15 | [B<-o>]
|
---|
16 | [B<-f>]
|
---|
17 | [B<-p>]
|
---|
18 | [B<-d>]
|
---|
19 | [B<-e>]
|
---|
20 | [B<-m>]
|
---|
21 | [B<-r>]
|
---|
22 | [B<-c>]
|
---|
23 |
|
---|
24 | =head1 DESCRIPTION
|
---|
25 |
|
---|
26 | This command is used to print out version information about OpenSSL.
|
---|
27 |
|
---|
28 | =head1 OPTIONS
|
---|
29 |
|
---|
30 | =over 4
|
---|
31 |
|
---|
32 | =item B<-help>
|
---|
33 |
|
---|
34 | Print out a usage message.
|
---|
35 |
|
---|
36 | =item B<-a>
|
---|
37 |
|
---|
38 | All information, this is the same as setting all the other flags.
|
---|
39 |
|
---|
40 | =item B<-v>
|
---|
41 |
|
---|
42 | The current OpenSSL version.
|
---|
43 |
|
---|
44 | =item B<-b>
|
---|
45 |
|
---|
46 | The date the current version of OpenSSL was built.
|
---|
47 |
|
---|
48 | =item B<-o>
|
---|
49 |
|
---|
50 | Option information: various options set when the library was built.
|
---|
51 |
|
---|
52 | =item B<-f>
|
---|
53 |
|
---|
54 | Compilation flags.
|
---|
55 |
|
---|
56 | =item B<-p>
|
---|
57 |
|
---|
58 | Platform setting.
|
---|
59 |
|
---|
60 | =item B<-d>
|
---|
61 |
|
---|
62 | OPENSSLDIR setting.
|
---|
63 |
|
---|
64 | =item B<-e>
|
---|
65 |
|
---|
66 | ENGINESDIR settings.
|
---|
67 |
|
---|
68 | =item B<-m>
|
---|
69 |
|
---|
70 | MODULESDIR settings.
|
---|
71 |
|
---|
72 | =item B<-r>
|
---|
73 |
|
---|
74 | The random number generator source settings.
|
---|
75 |
|
---|
76 | =item B<-c>
|
---|
77 |
|
---|
78 | The OpenSSL CPU settings info.
|
---|
79 |
|
---|
80 | =back
|
---|
81 |
|
---|
82 | =head1 NOTES
|
---|
83 |
|
---|
84 | The output of C<openssl version -a> would typically be used when sending
|
---|
85 | in a bug report.
|
---|
86 |
|
---|
87 | =head1 COPYRIGHT
|
---|
88 |
|
---|
89 | Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved.
|
---|
90 |
|
---|
91 | Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
92 | this file except in compliance with the License. You can obtain a copy
|
---|
93 | in the file LICENSE in the source distribution or at
|
---|
94 | L<https://www.openssl.org/source/license.html>.
|
---|
95 |
|
---|
96 | =cut
|
---|