summaryrefslogtreecommitdiff
path: root/crypto/evp/m_sigver.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-09-23 14:36:32 +0100
committerMatt Caswell <matt@openssl.org>2019-10-03 09:47:12 +0100
commit45a845e40bf68f1ed9aca6d465ddd508996d7d2f (patch)
treeeab33209183bd8c9006e1ad5c50e3048531317ae /crypto/evp/m_sigver.c
parentd8c98d79d1bb1dc3261d9b4fc2bc36074aec88f6 (diff)
downloadopenssl-new-45a845e40bf68f1ed9aca6d465ddd508996d7d2f.tar.gz
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.c2
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;
}