summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-07-10 23:00:22 +0200
committerRichard Levitte <levitte@openssl.org>2019-07-23 06:34:09 +0200
commitb37066fdf731dc186f87d816c59ea412418f3d9d (patch)
tree8e23d24dfbc89001a32ac5fb19cec7a4638244d3 /doc
parent1d2622d4f357a7994cf6fdc3fdba27317a6a6597 (diff)
Add OSSL_PROVIDER_name()
Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/9356)
Diffstat (limited to 'doc')
-rw-r--r--doc/man3/OSSL_PROVIDER.pod6
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/man3/OSSL_PROVIDER.pod b/doc/man3/OSSL_PROVIDER.pod
index 9fe2e18a69..fec67060f0 100644
--- a/doc/man3/OSSL_PROVIDER.pod
+++ b/doc/man3/OSSL_PROVIDER.pod
@@ -4,7 +4,7 @@
OSSL_PROVIDER, OSSL_PROVIDER_load, OSSL_PROVIDER_unload,
OSSL_PROVIDER_get_param_types, OSSL_PROVIDER_get_params,
-OSSL_PROVIDER_add_builtin - provider routines
+OSSL_PROVIDER_add_builtin, OSSL_PROVIDER_name - provider routines
=head1 SYNOPSIS
@@ -21,6 +21,8 @@ OSSL_PROVIDER_add_builtin - provider routines
int OSSL_PROVIDER_add_builtin(OPENSSL_CTX *, const char *name,
ossl_provider_init_fn *init_fn);
+ const char *OSSL_PROVIDER_name(const OSSL_PROVIDER *prov);
+
=head1 DESCRIPTION
B<OSSL_PROVIDER> is a type that holds internal information about
@@ -59,6 +61,8 @@ The caller must prepare the B<OSSL_PARAM> array before calling this
function, and the variables acting as buffers for this parameter array
should be filled with data when it returns successfully.
+OSSL_PROVIDER_name() returns the name of the given provider.
+
=head1 RETURN VALUES
OSSL_PROVIDER_add() returns 1 on success, or 0 on error.