summaryrefslogtreecommitdiffstats
path: root/lib/libssl/s3_srvr.c
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2014-06-11 15:44:10 +0000
committerjsing <jsing@openbsd.org>2014-06-11 15:44:10 +0000
commit69fce12f1e732d267df2130b70d1e11c27c3c731 (patch)
tree94e2a053e69b580e76cf6b2503b6470b23c0e4a2 /lib/libssl/s3_srvr.c
parentTsk. Tsk. Someone forgot to compile test the other half. (diff)
downloadwireguard-openbsd-69fce12f1e732d267df2130b70d1e11c27c3c731.tar.xz
wireguard-openbsd-69fce12f1e732d267df2130b70d1e11c27c3c731.zip
Stop setting the EVP_MD_CTX_FLAG_NON_FIPS_ALLOW - it has been ignored since
OpenSSL 1.0.0. ok miod@ (a little while back)
Diffstat (limited to 'lib/libssl/s3_srvr.c')
-rw-r--r--lib/libssl/s3_srvr.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libssl/s3_srvr.c b/lib/libssl/s3_srvr.c
index 9dc944706f5..6bf4def27d0 100644
--- a/lib/libssl/s3_srvr.c
+++ b/lib/libssl/s3_srvr.c
@@ -1793,8 +1793,6 @@ ssl3_send_server_key_exchange(SSL *s)
q = md_buf;
j = 0;
for (num = 2; num > 0; num--) {
- EVP_MD_CTX_set_flags(&md_ctx,
- EVP_MD_CTX_FLAG_NON_FIPS_ALLOW);
EVP_DigestInit_ex(&md_ctx,
(num == 2) ? s->ctx->md5 :
s->ctx->sha1, NULL);