diff options
author | Ladislav Marko <LadislavMarko@seznam.cz> | 2023-04-11 15:56:11 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2023-04-13 02:11:23 +0200 |
commit | b2023d5dfc957cf5a3cfca16961f97e79842b941 (patch) | |
tree | 54c1e4f1d587d2a4a28efaf0db962ee82b57b454 /doc/man7 | |
parent | Fixes #19580 ECX keygen (diff) | |
download | openssl-b2023d5dfc957cf5a3cfca16961f97e79842b941.tar.xz openssl-b2023d5dfc957cf5a3cfca16961f97e79842b941.zip |
doc: Fix misleading stucture info
CLA: trivial
The thing created by `OSSL_FUNC_signature_newctx()` and `OSSL_FUNC_signature_dupctx()` is a signature context, not a signature. It's in the name of the function and surrounding documentation.
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Hugo Landau <hlandau@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20705)
Diffstat (limited to 'doc/man7')
-rw-r--r-- | doc/man7/provider-signature.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man7/provider-signature.pod b/doc/man7/provider-signature.pod index 022b52ae14..a3b9ca524a 100644 --- a/doc/man7/provider-signature.pod +++ b/doc/man7/provider-signature.pod @@ -420,7 +420,7 @@ respectively. =head1 RETURN VALUES OSSL_FUNC_signature_newctx() and OSSL_FUNC_signature_dupctx() should return the newly created -provider side signature, or NULL on failure. +provider side signature context, or NULL on failure. OSSL_FUNC_signature_gettable_ctx_params(), OSSL_FUNC_signature_settable_ctx_params(), OSSL_FUNC_signature_gettable_md_ctx_params() and OSSL_FUNC_signature_settable_md_ctx_params(), |