diff options
author | Matt Caswell <matt@openssl.org> | 2019-09-23 15:36:32 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2019-10-03 10:47:12 +0200 |
commit | 45a845e40bf68f1ed9aca6d465ddd508996d7d2f (patch) | |
tree | eab33209183bd8c9006e1ad5c50e3048531317ae /crypto/evp/m_sigver.c | |
parent | Add the provider function signatures for DigestSign* (diff) | |
download | openssl-45a845e40bf68f1ed9aca6d465ddd508996d7d2f.tar.xz openssl-45a845e40bf68f1ed9aca6d465ddd508996d7d2f.zip |
Add EVP_DigestSign/EVP_DigestVerify support for DSA
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/10013)
Diffstat (limited to 'crypto/evp/m_sigver.c')
-rw-r--r-- | crypto/evp/m_sigver.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/evp/m_sigver.c b/crypto/evp/m_sigver.c index 54c973e0c9..8b7a3e88b3 100644 --- a/crypto/evp/m_sigver.c +++ b/crypto/evp/m_sigver.c @@ -58,6 +58,8 @@ static int do_sigver_init(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, * algorithms are moved to providers. */ switch (locpctx->pkey->type) { + case NID_dsa: + break; default: goto legacy; } |