diff options
author | Ingo Franzki <ifranzki@linux.ibm.com> | 2023-01-18 11:24:16 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2023-01-23 10:34:36 +0100 |
commit | 1d857945324810f43a302c9d062c617207093387 (patch) | |
tree | cfa30299808b11e3ae6f268fdd201a32f94bcaa6 /doc/man7 | |
parent | Adding a separated build settings for BSD flavors (diff) | |
download | openssl-1d857945324810f43a302c9d062c617207093387.tar.xz openssl-1d857945324810f43a302c9d062c617207093387.zip |
Allow OSSL_SIGNATURE_PARAM_NONCE_TYPE to be retrieved
Context parameter OSSL_SIGNATURE_PARAM_NONCE_TYPE can now also be
retrieved for ECDSA and DSA.
Signed-off-by: Ingo Franzki <ifranzki@linux.ibm.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20070)
Diffstat (limited to 'doc/man7')
-rw-r--r-- | doc/man7/EVP_SIGNATURE-DSA.pod | 2 | ||||
-rw-r--r-- | doc/man7/EVP_SIGNATURE-ECDSA.pod | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/doc/man7/EVP_SIGNATURE-DSA.pod b/doc/man7/EVP_SIGNATURE-DSA.pod index 7eeb234f75..397fd90019 100644 --- a/doc/man7/EVP_SIGNATURE-DSA.pod +++ b/doc/man7/EVP_SIGNATURE-DSA.pod @@ -37,6 +37,8 @@ EVP_PKEY_CTX_get_params(). =item "digest" (B<OSSL_SIGNATURE_PARAM_DIGEST>) <UTF8 string> +=item "nonce-type" (B<OSSL_SIGNATURE_PARAM_NONCE_TYPE>) <unsigned integer> + The gettable parameters are described in L<provider-signature(7)>. =back diff --git a/doc/man7/EVP_SIGNATURE-ECDSA.pod b/doc/man7/EVP_SIGNATURE-ECDSA.pod index b1757f2630..ea167f2784 100644 --- a/doc/man7/EVP_SIGNATURE-ECDSA.pod +++ b/doc/man7/EVP_SIGNATURE-ECDSA.pod @@ -36,6 +36,8 @@ EVP_PKEY_CTX_get_params(). =item "digest" (B<OSSL_SIGNATURE_PARAM_DIGEST>) <UTF8 string> +=item "nonce-type" (B<OSSL_SIGNATURE_PARAM_NONCE_TYPE>) <unsigned integer> + The parameters are described in L<provider-signature(7)>. =back |