From: Pauli Date: Wed, 25 Sep 2019 10:43:03 +0000 (+1000) Subject: Use OSSL_PARAM types. Limits are explained in the description where appropriate. X-Git-Tag: openssl-3.0.0-alpha1~1275 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42462e4016d85b2abc5dcd5c872a71bb7521e079;p=thirdparty%2Fopenssl.git Use OSSL_PARAM types. Limits are explained in the description where appropriate. Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/10011) --- diff --git a/doc/man3/EVP_PKEY_CTX_ctrl.pod b/doc/man3/EVP_PKEY_CTX_ctrl.pod index 13ea5708656..0fd500ad595 100644 --- a/doc/man3/EVP_PKEY_CTX_ctrl.pod +++ b/doc/man3/EVP_PKEY_CTX_ctrl.pod @@ -163,7 +163,7 @@ The parameters currently supported by the default provider are: =over 4 -=item "pad" (B) +=item "pad" (B) Sets the DH padding mode. If B is 1 then the shared secret is padded with zeroes @@ -171,15 +171,16 @@ up to the size of the DH prime B

. If B is zero (the default) then no padding is performed. -=item "digest" (B) +=item "digest" (B) Gets and sets the name of the digest algorithm used for the input to the signature functions. -=item "digest-size" (B) +=item "digest-size" (B) Gets and 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. The internal algorithm that supports this parameter is DSA. =back