diff options
-rw-r--r-- | src/lib/libcrypto/dsa/dsa_pmeth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/dsa/dsa_pmeth.c b/src/lib/libcrypto/dsa/dsa_pmeth.c index 019bee68b2..adc7319731 100644 --- a/src/lib/libcrypto/dsa/dsa_pmeth.c +++ b/src/lib/libcrypto/dsa/dsa_pmeth.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dsa_pmeth.c,v 1.20 2024/08/26 22:00:47 op Exp $ */ | 1 | /* $OpenBSD: dsa_pmeth.c,v 1.21 2024/10/19 14:39:44 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2006. | 3 | * project 2006. |
4 | */ | 4 | */ |
@@ -205,7 +205,7 @@ pkey_dsa_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) | |||
205 | 205 | ||
206 | case EVP_PKEY_CTRL_MD: | 206 | case EVP_PKEY_CTRL_MD: |
207 | /* ANSI X9.57 and NIST CSOR. */ | 207 | /* ANSI X9.57 and NIST CSOR. */ |
208 | switch (EVP_MD_type((const EVP_MD *)p2)) { | 208 | switch (EVP_MD_type(p2)) { |
209 | case NID_sha1: | 209 | case NID_sha1: |
210 | case NID_dsa: | 210 | case NID_dsa: |
211 | case NID_dsaWithSHA: | 211 | case NID_dsaWithSHA: |