summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-08-26 22:09:27 +0200
committerRichard Levitte <levitte@openssl.org>2019-08-28 10:33:45 +0200
commit18d307e98ebfe6d376ab039a73dc285190b717a0 (patch)
tree5f078553c6a9c57709fb7707e383b7c428c6ddaf /doc
parent16485a3ada49e68b1ae93ed4fe3b55fdb3a7e61e (diff)
openssl provider: New sub-command, for provider discovery
This command is somewhat similar to 'openssl engine', but displays what it can about the given providers. Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/9697)
Diffstat (limited to 'doc')
-rw-r--r--doc/man1/provider.pod57
1 files changed, 57 insertions, 0 deletions
diff --git a/doc/man1/provider.pod b/doc/man1/provider.pod
new file mode 100644
index 0000000000..6c71d1cd64
--- /dev/null
+++ b/doc/man1/provider.pod
@@ -0,0 +1,57 @@
+=pod
+
+=head1 NAME
+
+openssl-provider - load and query providers
+
+=head1 SYNOPSIS
+
+B<openssl provider>
+[B<-v>]
+[B<-vv>]
+[B<-vvv>]
+[ I<provider...> ]
+
+=head1 DESCRIPTION
+
+The B<provider> command is used to query the capabilities of the specified
+I<provider>'s.
+
+=head1 OPTIONS
+
+=over 4
+
+=item B<-v> B<-vv> B<-vvv>
+
+Provides information about each specified provider.
+The first flag lists the names of all algorithms each provider
+implements; the second lists them by category; the third adds
+information on what parameters each of them can handle.
+
+=back
+
+=head1 ENVIRONMENT
+
+=over 4
+
+=item B<OPENSSL_MODULES>
+
+The path to the modules directory, where one can expect provider
+modules to be located.
+
+=back
+
+=head1 SEE ALSO
+
+L<config(5)>
+
+=head1 COPYRIGHT
+
+Copyright 2019 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