]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Correct doubled OSSL_OSSL when documenting OSSL_FUNC_.._fn
authorTomas Mraz <tomas@openssl.org>
Wed, 6 Apr 2022 14:20:47 +0000 (16:20 +0200)
committerTomas Mraz <tomas@openssl.org>
Tue, 28 Jun 2022 15:54:56 +0000 (17:54 +0200)
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17554)

doc/man7/provider-cipher.pod
doc/man7/provider-digest.pod
doc/man7/provider-kdf.pod
doc/man7/provider-mac.pod
doc/man7/provider-storemgmt.pod

index b4a87a3282b679284e9c83b557d56c66e985c9bb..b5bbb1b91d0839d1d9552f4987dc6d91f0af9b13 100644 (file)
@@ -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
index 5f44df97e7b0b63d845192c391dac43f493d9b11..4c90561e31645529dcec9cbf9212503c52ce7b42 100644 (file)
@@ -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
index f17946215d266bd86e634311e780e8525226fcf1..58337bf3db1fe7599c34067af89d49268c73caec 100644 (file)
@@ -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
index 7ebe72f07dc74554ec2f08bad73a6e07ae4e830e..5a1659121eba91f60453a51fb3f3bd9b5965a60c 100644 (file)
@@ -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
index 0da07a11dc278d1c612fdb14be7507feed59b10a..d38e8e53d70028bb1b5ec9332d2503c9f8aad06c 100644 (file)
@@ -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: