diff options
author | David Benjamin <davidben@google.com> | 2019-01-25 20:56:45 +0100 |
---|---|---|
committer | David Benjamin <davidben@google.com> | 2019-01-30 17:04:47 +0100 |
commit | a97faad76a1be22eadd6c1a39972ad5e095d9e80 (patch) | |
tree | 0c83ed55937c8c60594e3853c49f26c7e37559ec /include | |
parent | Complain if -twopass is used incorrectly (diff) | |
download | openssl-a97faad76a1be22eadd6c1a39972ad5e095d9e80.tar.xz openssl-a97faad76a1be22eadd6c1a39972ad5e095d9e80.zip |
Document and add macros for additional DSA options
EVP_PKEY_CTRL_DSA_PARAMGEN_Q_BITS and EVP_PKEY_CTRL_DSA_PARAMGEN_MD are only
exposed from EVP_PKEY_CTX_ctrl, which means callers must write more error-prone
code (see also issue #1319). Add the missing wrapper macros and document them.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/8093)
Diffstat (limited to 'include')
-rw-r--r-- | include/openssl/dsa.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/openssl/dsa.h b/include/openssl/dsa.h index a9df8cc47b..ea01aafd3f 100644 --- a/include/openssl/dsa.h +++ b/include/openssl/dsa.h @@ -162,6 +162,12 @@ DH *DSA_dup_DH(const DSA *r); # define EVP_PKEY_CTX_set_dsa_paramgen_bits(ctx, nbits) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DSA, EVP_PKEY_OP_PARAMGEN, \ EVP_PKEY_CTRL_DSA_PARAMGEN_BITS, nbits, NULL) +# define EVP_PKEY_CTX_set_dsa_paramgen_q_bits(ctx, qbits) \ + EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DSA, EVP_PKEY_OP_PARAMGEN, \ + EVP_PKEY_CTRL_DSA_PARAMGEN_Q_BITS, qbits, NULL) +# define EVP_PKEY_CTX_set_dsa_paramgen_md(ctx, md) \ + EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DSA, EVP_PKEY_OP_PARAMGEN, \ + EVP_PKEY_CTRL_DSA_PARAMGEN_MD, 0, (void *)(md)) # define EVP_PKEY_CTRL_DSA_PARAMGEN_BITS (EVP_PKEY_ALG_CTRL + 1) # define EVP_PKEY_CTRL_DSA_PARAMGEN_Q_BITS (EVP_PKEY_ALG_CTRL + 2) |