From abdc360910496483afa44b9ca075e21b248a491d Mon Sep 17 00:00:00 2001 From: jsing <> Date: Tue, 28 Feb 2017 14:08:50 +0000 Subject: Stop pretending that MD5 and SHA1 might not exist - rather than locating "ssl3-md5" and "ssl-sha1", call the EVP_md5() and EVP_sha1() functions directly. ok beck@ inoguchi@ --- src/lib/libssl/ssl_locl.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/lib/libssl/ssl_locl.h') diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index 62d9d0314e..59f6104391 100644 --- a/src/lib/libssl/ssl_locl.h +++ b/src/lib/libssl/ssl_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_locl.h,v 1.174 2017/02/21 15:28:27 jsing Exp $ */ +/* $OpenBSD: ssl_locl.h,v 1.175 2017/02/28 14:08:49 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -531,9 +531,6 @@ typedef struct ssl_ctx_internal_st { struct cert_st /* CERT */ *cert; - const EVP_MD *md5; /* For SSLv3/TLSv1 'ssl3-md5' */ - const EVP_MD *sha1; /* For SSLv3/TLSv1 'ssl3-sha1' */ - /* Default values used when no per-SSL value is defined follow */ /* what we put in client cert requests */ -- cgit v1.2.3-55-g6feb