forked from openssl/openssl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add base documentation for evp_test tool
- Loading branch information
Showing
2 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
=pod | ||
|
||
=head1 NAME | ||
|
||
evp_test - OpenSSL EVP test command line program | ||
|
||
=head1 SYNOPSIS | ||
|
||
B<evp_test> | ||
I<command> | ||
[ I<options> ... ] | ||
[ I<test file> ] | ||
|
||
B<evp_test> B<-help> | B<-version> | ||
|
||
=head1 DESCRIPTION | ||
|
||
Test tool for various implementations of crypto algorithms. | ||
|
||
=head1 COMMAND SUMMARY | ||
|
||
=head2 Configuration Option | ||
|
||
The B<-config> option to specify configuration file. | ||
|
||
=head1 OPTIONS | ||
|
||
This section describes some available options. | ||
|
||
=head2 Test Options | ||
|
||
=over 4 | ||
|
||
=item B<-help> | ||
|
||
Provides a terse summary of all options. | ||
For more detailed information, each command supports a B<-help> option. | ||
Accepts B<--help> as well. | ||
|
||
=item B<-version> | ||
|
||
Provides a terse summary of the B<openssl> program version. | ||
For more detailed information see L<openssl-version(1)>. | ||
Accepts B<--version> as well. | ||
|
||
=back | ||
|
||
=head2 Common Options | ||
|
||
=over 4 | ||
|
||
=item B<-help> | ||
|
||
If an option takes an argument, the "type" of argument is also given. | ||
|
||
=item B<--> | ||
|
||
This terminates the list of options. It is mostly useful if any filename | ||
parameters start with a minus sign: | ||
|
||
openssl verify [flags...] -- -cert1.pem... | ||
|
||
=back | ||
|
||
=head2 Provider Options | ||
|
||
=over 4 | ||
|
||
=item B<-provider> I<name> | ||
|
||
Load and initialize the provider identified by I<name>. The I<name> | ||
can be also a path to the provider module. In that case the provider name | ||
will be the specified path and not just the provider module name. | ||
Interpretation of relative paths is platform specific. The configured | ||
"MODULESDIR" path, B<OPENSSL_MODULES> environment variable, or the path | ||
specified by B<-provider-path> is prepended to relative paths. | ||
See L<provider(7)> for a more detailed description. | ||
|
||
=item B<-propquery> I<propq> | ||
|
||
Specifies the I<property query clause> to be used when fetching algorithms | ||
from the loaded providers. | ||
See L<property(7)> for a more detailed description. | ||
|
||
=back | ||
|
||
=head1 SEE ALSO | ||
|
||
L<openssl(1)> | ||
|
||
=head1 COPYRIGHT | ||
|
||
Copyright 2000-2023 The OpenSSL Project Authors. All Rights Reserved. | ||
|
||
Licensed under the Apache License 2.0 (the "License"). You may not use | ||
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 |