summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2017-03-01 13:53:58 +0000
committerjsing <jsing@openbsd.org>2017-03-01 13:53:58 +0000
commitb04b2f06c23b60533d577f256c7c5908c79e7714 (patch)
treeb922ccb43486c3b41693f0071c33d389f655a564 /lib
parentDon't try to access the com(4) hardware to set up the console speed (diff)
downloadwireguard-openbsd-b04b2f06c23b60533d577f256c7c5908c79e7714.tar.xz
wireguard-openbsd-b04b2f06c23b60533d577f256c7c5908c79e7714.zip
Include EVP_md5_sha1() via OpenSSL_add_all_digests().
Diffstat (limited to 'lib')
-rw-r--r--lib/libcrypto/evp/c_all.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/evp/c_all.c b/lib/libcrypto/evp/c_all.c
index b83195b3706..8ab93fece88 100644
--- a/lib/libcrypto/evp/c_all.c
+++ b/lib/libcrypto/evp/c_all.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: c_all.c,v 1.20 2015/09/14 01:45:03 doug Exp $ */
+/* $OpenBSD: c_all.c,v 1.21 2017/03/01 13:53:58 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -234,6 +234,7 @@ OpenSSL_add_all_digests(void)
#ifndef OPENSSL_NO_MD5
EVP_add_digest(EVP_md5());
+ EVP_add_digest(EVP_md5_sha1());
EVP_add_digest_alias(SN_md5, "ssl2-md5");
EVP_add_digest_alias(SN_md5, "ssl3-md5");
#endif