diff options
author | jsing <> | 2017-02-28 14:08:50 +0000 |
---|---|---|
committer | jsing <> | 2017-02-28 14:08:50 +0000 |
commit | abdc360910496483afa44b9ca075e21b248a491d (patch) | |
tree | c43008fd64414dbc69067d59ebd7d29731f5def4 /src/lib/libssl/ssl_locl.h | |
parent | c2b74811611cc1f5ffe9e6543476548a8a9bba0a (diff) | |
download | openbsd-abdc360910496483afa44b9ca075e21b248a491d.tar.gz openbsd-abdc360910496483afa44b9ca075e21b248a491d.tar.bz2 openbsd-abdc360910496483afa44b9ca075e21b248a491d.zip |
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@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 5 |
1 files changed, 1 insertions, 4 deletions
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 @@ | |||
1 | /* $OpenBSD: ssl_locl.h,v 1.174 2017/02/21 15:28:27 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_locl.h,v 1.175 2017/02/28 14:08:49 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -531,9 +531,6 @@ typedef struct ssl_ctx_internal_st { | |||
531 | 531 | ||
532 | struct cert_st /* CERT */ *cert; | 532 | struct cert_st /* CERT */ *cert; |
533 | 533 | ||
534 | const EVP_MD *md5; /* For SSLv3/TLSv1 'ssl3-md5' */ | ||
535 | const EVP_MD *sha1; /* For SSLv3/TLSv1 'ssl3-sha1' */ | ||
536 | |||
537 | /* Default values used when no per-SSL value is defined follow */ | 534 | /* Default values used when no per-SSL value is defined follow */ |
538 | 535 | ||
539 | /* what we put in client cert requests */ | 536 | /* what we put in client cert requests */ |