1 | =pod
|
---|
2 | {- OpenSSL::safe::output_do_not_edit_headers(); -}
|
---|
3 |
|
---|
4 | =head1 NAME
|
---|
5 |
|
---|
6 | openssl-info - print OpenSSL built-in information
|
---|
7 |
|
---|
8 | =head1 SYNOPSIS
|
---|
9 |
|
---|
10 | B<openssl info>
|
---|
11 | [B<-help>]
|
---|
12 | [B<-configdir>]
|
---|
13 | [B<-enginesdir>]
|
---|
14 | [B<-modulesdir> ]
|
---|
15 | [B<-dsoext>]
|
---|
16 | [B<-dirnamesep>]
|
---|
17 | [B<-listsep>]
|
---|
18 | [B<-seeds>]
|
---|
19 | [B<-cpusettings>]
|
---|
20 | [B<-windowscontext>]
|
---|
21 |
|
---|
22 | =head1 DESCRIPTION
|
---|
23 |
|
---|
24 | This command is used to print out information about OpenSSL.
|
---|
25 | The information is written exactly as it is with no extra text, which
|
---|
26 | makes useful for scripts.
|
---|
27 |
|
---|
28 | As a consequence, only one item may be chosen for each run of this
|
---|
29 | command.
|
---|
30 |
|
---|
31 | =head1 OPTIONS
|
---|
32 |
|
---|
33 | =over 4
|
---|
34 |
|
---|
35 | =item B<-help>
|
---|
36 |
|
---|
37 | Print out a usage message.
|
---|
38 |
|
---|
39 | =item B<-configdir>
|
---|
40 |
|
---|
41 | Outputs the default directory for OpenSSL configuration files.
|
---|
42 |
|
---|
43 | =item B<-enginesdir>
|
---|
44 |
|
---|
45 | Outputs the default directory for OpenSSL engine modules.
|
---|
46 |
|
---|
47 | =item B<-modulesdir>
|
---|
48 |
|
---|
49 | Outputs the default directory for OpenSSL dynamically loadable modules
|
---|
50 | other than engine modules.
|
---|
51 |
|
---|
52 | =item B<-dsoext>
|
---|
53 |
|
---|
54 | Outputs the DSO extension OpenSSL uses.
|
---|
55 |
|
---|
56 | =item B<-dirnamesep>
|
---|
57 |
|
---|
58 | Outputs the separator character between a directory specification and
|
---|
59 | a filename.
|
---|
60 | Note that on some operating systems, this is not the same as the
|
---|
61 | separator between directory elements.
|
---|
62 |
|
---|
63 | =item B<-listsep>
|
---|
64 |
|
---|
65 | Outputs the OpenSSL list separator character.
|
---|
66 | This is typically used to construct C<$PATH> (C<%PATH%> on Windows)
|
---|
67 | style lists.
|
---|
68 |
|
---|
69 | =item B<-seeds>
|
---|
70 |
|
---|
71 | Outputs the randomness seed sources.
|
---|
72 |
|
---|
73 | =item B<-cpusettings>
|
---|
74 |
|
---|
75 | Outputs the OpenSSL CPU settings info.
|
---|
76 |
|
---|
77 | =item B<-windowscontext>
|
---|
78 |
|
---|
79 | Outputs the Windows install context.
|
---|
80 |
|
---|
81 | =back
|
---|
82 |
|
---|
83 | =head1 HISTORY
|
---|
84 |
|
---|
85 | This command was added in OpenSSL 3.0.
|
---|
86 |
|
---|
87 | The B<-windowscontext> option was added in OpenSSL 3.4.
|
---|
88 |
|
---|
89 | =head1 COPYRIGHT
|
---|
90 |
|
---|
91 | Copyright 2019-2024 The OpenSSL Project Authors. All Rights Reserved.
|
---|
92 |
|
---|
93 | Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
94 | this file except in compliance with the License. You can obtain a copy
|
---|
95 | in the file LICENSE in the source distribution or at
|
---|
96 | L<https://www.openssl.org/source/license.html>.
|
---|
97 |
|
---|
98 | =cut
|
---|