summaryrefslogtreecommitdiffstats
path: root/doc/man7
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2022-04-06 16:20:47 +0200
committerTomas Mraz <tomas@openssl.org>2022-06-28 17:54:56 +0200
commit13b47155ba425ffd0683e1bff30f746c96a19049 (patch)
tree25eda32b6aa93e0caadc63592f10475a2d05fd3f /doc/man7
parent4cfcc7e1213d39c78852a614894ebcd2e2be095c (diff)
Correct doubled OSSL_OSSL when documenting OSSL_FUNC_.._fn
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17554)
Diffstat (limited to 'doc/man7')
-rw-r--r--doc/man7/provider-cipher.pod4
-rw-r--r--doc/man7/provider-digest.pod4
-rw-r--r--doc/man7/provider-kdf.pod4
-rw-r--r--doc/man7/provider-mac.pod4
-rw-r--r--doc/man7/provider-storemgmt.pod10
5 files changed, 13 insertions, 13 deletions
diff --git a/doc/man7/provider-cipher.pod b/doc/man7/provider-cipher.pod
index b4a87a3282..b5bbb1b91d 100644
--- a/doc/man7/provider-cipher.pod
+++ b/doc/man7/provider-cipher.pod
@@ -74,8 +74,8 @@ function pointer from an B<OSSL_DISPATCH> element named
B<OSSL_FUNC_{name}>.
For example, the "function" OSSL_FUNC_cipher_newctx() has these:
- typedef void *(OSSL_OSSL_FUNC_cipher_newctx_fn)(void *provctx);
- static ossl_inline OSSL_OSSL_FUNC_cipher_newctx_fn
+ typedef void *(OSSL_FUNC_cipher_newctx_fn)(void *provctx);
+ static ossl_inline OSSL_FUNC_cipher_newctx_fn
OSSL_FUNC_cipher_newctx(const OSSL_DISPATCH *opf);
B<OSSL_DISPATCH> arrays are indexed by numbers that are provided as
diff --git a/doc/man7/provider-digest.pod b/doc/man7/provider-digest.pod
index 5f44df97e7..4c90561e31 100644
--- a/doc/man7/provider-digest.pod
+++ b/doc/man7/provider-digest.pod
@@ -66,8 +66,8 @@ function pointer from an B<OSSL_DISPATCH> element named
B<OSSL_FUNC_{name}>.
For example, the "function" OSSL_FUNC_digest_newctx() has these:
- typedef void *(OSSL_OSSL_FUNC_digest_newctx_fn)(void *provctx);
- static ossl_inline OSSL_OSSL_FUNC_digest_newctx_fn
+ typedef void *(OSSL_FUNC_digest_newctx_fn)(void *provctx);
+ static ossl_inline OSSL_FUNC_digest_newctx_fn
OSSL_FUNC_digest_newctx(const OSSL_DISPATCH *opf);
B<OSSL_DISPATCH> arrays are indexed by numbers that are provided as
diff --git a/doc/man7/provider-kdf.pod b/doc/man7/provider-kdf.pod
index f17946215d..58337bf3db 100644
--- a/doc/man7/provider-kdf.pod
+++ b/doc/man7/provider-kdf.pod
@@ -58,8 +58,8 @@ function pointer from an B<OSSL_DISPATCH> element named
B<OSSL_FUNC_{name}>.
For example, the "function" OSSL_FUNC_kdf_newctx() has these:
- typedef void *(OSSL_OSSL_FUNC_kdf_newctx_fn)(void *provctx);
- static ossl_inline OSSL_OSSL_FUNC_kdf_newctx_fn
+ typedef void *(OSSL_FUNC_kdf_newctx_fn)(void *provctx);
+ static ossl_inline OSSL_FUNC_kdf_newctx_fn
OSSL_FUNC_kdf_newctx(const OSSL_DISPATCH *opf);
B<OSSL_DISPATCH> array entries are identified by numbers that are provided as
diff --git a/doc/man7/provider-mac.pod b/doc/man7/provider-mac.pod
index 7ebe72f07d..5a1659121e 100644
--- a/doc/man7/provider-mac.pod
+++ b/doc/man7/provider-mac.pod
@@ -59,8 +59,8 @@ function pointer from an B<OSSL_DISPATCH> element named
B<OSSL_FUNC_{name}>.
For example, the "function" OSSL_FUNC_mac_newctx() has these:
- typedef void *(OSSL_OSSL_FUNC_mac_newctx_fn)(void *provctx);
- static ossl_inline OSSL_OSSL_FUNC_mac_newctx_fn
+ typedef void *(OSSL_FUNC_mac_newctx_fn)(void *provctx);
+ static ossl_inline OSSL_FUNC_mac_newctx_fn
OSSL_FUNC_mac_newctx(const OSSL_DISPATCH *opf);
B<OSSL_DISPATCH> arrays are indexed by numbers that are provided as
diff --git a/doc/man7/provider-storemgmt.pod b/doc/man7/provider-storemgmt.pod
index 0da07a11dc..d38e8e53d7 100644
--- a/doc/man7/provider-storemgmt.pod
+++ b/doc/man7/provider-storemgmt.pod
@@ -52,12 +52,12 @@ provider_query_operation() function
All these "functions" have a corresponding function type definition named
B<OSSL_FUNC_{name}_fn>, and a helper function to retrieve the function pointer
from a B<OSSL_DISPATCH> element named B<OSSL_get_{name}>.
-For example, the "function" OSSL_FUNC_store_load() has these:
+For example, the "function" OSSL_FUNC_store_attach() has these:
- typedef void *(OSSL_OSSL_FUNC_store_load_fn)(void *provctx,
- const OSSL_PARAM params[]);
- static ossl_inline OSSL_OSSL_FUNC_store_load_fn
- OSSL_OSSL_FUNC_store_load(const OSSL_DISPATCH *opf);
+ typedef void *(OSSL_FUNC_store_attach_fn)(void *provctx,
+ OSSL_CORE_BIO * bio);
+ static ossl_inline OSSL_FUNC_store_attach_fn
+ OSSL_FUNC_store_attach(const OSSL_DISPATCH *opf);
B<OSSL_DISPATCH> arrays are indexed by numbers that are provided as macros
in L<openssl-core_dispatch.h(7)>, as follows: