diff --git a/doc/build.info b/doc/build.info index 5c24273b63f8c..42808b4f3a489 100644 --- a/doc/build.info +++ b/doc/build.info @@ -106,6 +106,10 @@ DEPEND[man/man1/openssl-errstr.1]=man1/openssl-errstr.pod GENERATE[man/man1/openssl-errstr.1]=man1/openssl-errstr.pod DEPEND[man1/openssl-errstr.pod]{pod}=man1/openssl-errstr.pod.in GENERATE[man1/openssl-errstr.pod]=man1/openssl-errstr.pod.in +DEPEND[html/man1/evp_test.html]=man1/openssl-evp_test.pod +GENERATE[html/man1/evp_test.html]=man1/openssl-evp_test.pod +DEPEND[man/man1/evp_test.1]=man1/openssl-evp_test.pod +GENERATE[man/man1/evp_test.1]=man1/openssl-evp_test.pod DEPEND[html/man1/openssl-fipsinstall.html]=man1/openssl-fipsinstall.pod GENERATE[html/man1/openssl-fipsinstall.html]=man1/openssl-fipsinstall.pod DEPEND[man/man1/openssl-fipsinstall.1]=man1/openssl-fipsinstall.pod @@ -365,6 +369,7 @@ html/man1/openssl-ecparam.html \ html/man1/openssl-enc.html \ html/man1/openssl-engine.html \ html/man1/openssl-errstr.html \ +html/man1/openssl-evp_test.html \ html/man1/openssl-fipsinstall.html \ html/man1/openssl-format-options.html \ html/man1/openssl-gendsa.html \ @@ -425,6 +430,7 @@ man/man1/openssl-ecparam.1 \ man/man1/openssl-enc.1 \ man/man1/openssl-engine.1 \ man/man1/openssl-errstr.1 \ +man/man1/openssl-evp_test.1 \ man/man1/openssl-fipsinstall.1 \ man/man1/openssl-format-options.1 \ man/man1/openssl-gendsa.1 \ diff --git a/doc/man1/openssl-evp_test.pod b/doc/man1/openssl-evp_test.pod new file mode 100644 index 0000000000000..c0e9e800f2411 --- /dev/null +++ b/doc/man1/openssl-evp_test.pod @@ -0,0 +1,94 @@ +=pod + +=head1 NAME + +evp_test - OpenSSL EVP test command line program + +=head1 SYNOPSIS + +B +[ I ... ] +[ I ] + +B B<-help> +B<-config> +B<-list> +B<-test> +B<-iter> +B<-indent> +B<-seed> +B<-process> +B<-provider> + +=head1 DESCRIPTION + +Test tool for various implementations of crypto algorithms. + +=head1 OPTIONS + +=over 4 + +=item B<-help> + +Provides a terse summary of all options. + +=item B<-config> I + +The I specifies configuration file to use for the libctx. + +=item B<-list> + +Display the list of tests available. + +=item B<-test> I + +Run a single test by id or name. + +=item B<-iter> I + +Run a single iteration of a test. + +=item B<-indent> I + +Number of tabs added to output. + +=item B<-seed> I + +Seed value to randomize tests with. + +=item B<-process> I + +Mode for data processing by cipher tests, both by default. + +=item B<-provider> I + +Load and initialize the provider identified by I. +When no configuration file, the default value is 'default'. +See L for a more detailed description. + +=item B<-propquery> I + +Specifies the I to be used when fetching algorithms +from the loaded providers. +See L for a more detailed description. + +=item B + +File to run tests on. + +=back + +=head1 SEE ALSO + +L + +=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. + +=cut