1999-11-10 10:52:17 +08:00
|
|
|
=pod
|
2020-02-27 05:45:31 +08:00
|
|
|
{- OpenSSL::safe::output_do_not_edit_headers(); -}
|
1999-11-10 10:52:17 +08:00
|
|
|
|
1999-11-12 02:41:31 +08:00
|
|
|
=head1 NAME
|
1999-11-10 10:52:17 +08:00
|
|
|
|
2019-08-22 07:04:41 +08:00
|
|
|
openssl-version - print OpenSSL version information
|
1999-11-10 10:52:17 +08:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
1999-11-12 02:41:31 +08:00
|
|
|
B<openssl version>
|
2016-02-06 00:58:45 +08:00
|
|
|
[B<-help>]
|
1999-11-10 10:52:17 +08:00
|
|
|
[B<-a>]
|
|
|
|
[B<-v>]
|
|
|
|
[B<-b>]
|
|
|
|
[B<-o>]
|
|
|
|
[B<-f>]
|
|
|
|
[B<-p>]
|
2014-04-25 22:58:49 +08:00
|
|
|
[B<-d>]
|
2016-02-11 01:51:15 +08:00
|
|
|
[B<-e>]
|
2019-08-22 20:28:23 +08:00
|
|
|
[B<-m>]
|
|
|
|
[B<-r>]
|
|
|
|
[B<-c>]
|
1999-11-10 10:52:17 +08:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
This command is used to print out version information about OpenSSL.
|
|
|
|
|
|
|
|
=head1 OPTIONS
|
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
2016-02-06 00:58:45 +08:00
|
|
|
=item B<-help>
|
|
|
|
|
|
|
|
Print out a usage message.
|
|
|
|
|
1999-11-10 10:52:17 +08:00
|
|
|
=item B<-a>
|
|
|
|
|
2017-03-30 05:38:30 +08:00
|
|
|
All information, this is the same as setting all the other flags.
|
1999-11-10 10:52:17 +08:00
|
|
|
|
|
|
|
=item B<-v>
|
|
|
|
|
2017-03-30 05:38:30 +08:00
|
|
|
The current OpenSSL version.
|
1999-11-10 10:52:17 +08:00
|
|
|
|
|
|
|
=item B<-b>
|
|
|
|
|
2017-03-30 05:38:30 +08:00
|
|
|
The date the current version of OpenSSL was built.
|
1999-11-10 10:52:17 +08:00
|
|
|
|
|
|
|
=item B<-o>
|
|
|
|
|
2017-03-30 05:38:30 +08:00
|
|
|
Option information: various options set when the library was built.
|
1999-11-10 10:52:17 +08:00
|
|
|
|
2014-04-25 22:58:49 +08:00
|
|
|
=item B<-f>
|
1999-11-10 10:52:17 +08:00
|
|
|
|
2017-03-30 05:38:30 +08:00
|
|
|
Compilation flags.
|
1999-11-10 10:52:17 +08:00
|
|
|
|
|
|
|
=item B<-p>
|
|
|
|
|
2017-03-30 05:38:30 +08:00
|
|
|
Platform setting.
|
1999-11-10 10:52:17 +08:00
|
|
|
|
2002-01-04 23:17:09 +08:00
|
|
|
=item B<-d>
|
|
|
|
|
|
|
|
OPENSSLDIR setting.
|
|
|
|
|
2016-02-11 01:51:15 +08:00
|
|
|
=item B<-e>
|
|
|
|
|
2019-01-31 07:06:50 +08:00
|
|
|
ENGINESDIR settings.
|
2016-02-11 01:51:15 +08:00
|
|
|
|
2019-08-22 20:28:23 +08:00
|
|
|
=item B<-m>
|
|
|
|
|
|
|
|
MODULESDIR settings.
|
|
|
|
|
|
|
|
=item B<-r>
|
|
|
|
|
|
|
|
The random number generator source settings.
|
|
|
|
|
|
|
|
=item B<-c>
|
|
|
|
|
|
|
|
The OpenSSL CPU settings info.
|
|
|
|
|
1999-11-10 10:52:17 +08:00
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 NOTES
|
|
|
|
|
Command docs: fix up command references
Almost all OpenSSL commands are in reality 'openssl cmd', so make sure
they are refered to like that and not just as the sub-command.
Self-references are avoided as much as is possible, and replaced with
"this command". In some cases, we even avoid that with a slight
rewrite of the sentence or paragrah they were in. However, in the few
cases where a self-reference is still admissible, they are done in
bold, i.e. openssl-speed.pod references itself like this:
B<openssl speed>
References to other commands are done as manual links, i.e. CA.pl.pod
references 'openssl req' like this: L<openssl-req(1)>
Some commands are examples rather than references; we enclose those in
C<>.
While we are it, we abolish "utility", replacing it with "command", or
remove it entirely in some cases.
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/10065)
2019-10-02 01:43:36 +08:00
|
|
|
The output of C<openssl version -a> would typically be used when sending
|
1999-11-10 10:52:17 +08:00
|
|
|
in a bug report.
|
|
|
|
|
2016-05-18 23:44:05 +08:00
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2020-04-23 20:55:52 +08:00
|
|
|
Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2016-05-18 23:44:05 +08:00
|
|
|
|
2018-12-06 21:04:11 +08:00
|
|
|
Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 23:44:05 +08:00
|
|
|
this file except in compliance with the License. You can obtain a copy
|
|
|
|
in the file LICENSE in the source distribution or at
|
|
|
|
L<https://www.openssl.org/source/license.html>.
|
|
|
|
|
|
|
|
=cut
|