diff options
author | Pauli <paul.dale@oracle.com> | 2019-09-25 12:42:42 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2019-09-25 23:10:41 +0200 |
commit | 72c162abb093857b2b3ea4fa2c1785eda7d6228f (patch) | |
tree | 3e751abeeac02db01759c899ea493efad4e6590b /doc/man7/provider-signature.pod | |
parent | KDF section 3 clean up (diff) | |
download | openssl-72c162abb093857b2b3ea4fa2c1785eda7d6228f.tar.xz openssl-72c162abb093857b2b3ea4fa2c1785eda7d6228f.zip |
Use OSSL_PARAM types. Limits are explained in the description where appropriate.
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10011)
Diffstat (limited to '')
-rw-r--r-- | doc/man7/provider-signature.pod | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/man7/provider-signature.pod b/doc/man7/provider-signature.pod index 1ab4831035..777b991cc6 100644 --- a/doc/man7/provider-signature.pod +++ b/doc/man7/provider-signature.pod @@ -194,15 +194,17 @@ algorithms: =over 4 -=item "digest" (B<OSSL_SIGNATURE_PARAM_DIGEST>) <utf8 string> +=item "digest" (B<OSSL_SIGNATURE_PARAM_DIGEST>) <UTF8 string> Get or sets the name of the digest algorithm used for the input to the signature functions. -=item "digest-size" (B<OSSL_SIGNATURE_PARAM_DIGEST_SIZE>) <size_t> +=item "digest-size" (B<OSSL_SIGNATURE_PARAM_DIGEST_SIZE>) <unsigned integer> Gets or sets the output size of the digest algorithm used for the input to the signature functions. +The length of the "digest-size" parameter should not exceed that of a B<size_t>. + =back |