diff options
author | doug <> | 2015-08-27 06:21:15 +0000 |
---|---|---|
committer | doug <> | 2015-08-27 06:21:15 +0000 |
commit | 86bf43c0754f7de02e216a110bff784aace5fea7 (patch) | |
tree | edcaf86fcb7a4c7c49e4f2bbefde1665cfd57458 /src/lib/libssl/ssl.h | |
parent | 9b2397328086b49e1f5d15b4248c6aa164c42a4d (diff) | |
download | openbsd-86bf43c0754f7de02e216a110bff784aace5fea7.tar.gz openbsd-86bf43c0754f7de02e216a110bff784aace5fea7.tar.bz2 openbsd-86bf43c0754f7de02e216a110bff784aace5fea7.zip |
Remove SSLv3 support from LibreSSL.
This is the first wave of SSLv3 removal which removes the main SSLv3
functions. Future commits will remove the rest of the SSLv3 support.
Discussed the plan at c2k15. Input from jsing@, beck@, miod@, bcook@,
sthen@, naddy@, and deraadt@.
ok jsing@, beck@
Diffstat (limited to 'src/lib/libssl/ssl.h')
-rw-r--r-- | src/lib/libssl/ssl.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h index 0cd220778b..e7873f5ed4 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl.h,v 1.92 2015/07/19 06:31:32 doug Exp $ */ | 1 | /* $OpenBSD: ssl.h,v 1.93 2015/08/27 06:21:15 doug 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 | * |
@@ -1676,10 +1676,6 @@ const char *SSL_get_version(const SSL *s); | |||
1676 | /* This sets the 'default' SSL version that SSL_new() will create */ | 1676 | /* This sets the 'default' SSL version that SSL_new() will create */ |
1677 | int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth); | 1677 | int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth); |
1678 | 1678 | ||
1679 | const SSL_METHOD *SSLv3_method(void); /* SSLv3 */ | ||
1680 | const SSL_METHOD *SSLv3_server_method(void); /* SSLv3 */ | ||
1681 | const SSL_METHOD *SSLv3_client_method(void); /* SSLv3 */ | ||
1682 | |||
1683 | const SSL_METHOD *SSLv23_method(void); /* SSLv3 or TLSv1.* */ | 1679 | const SSL_METHOD *SSLv23_method(void); /* SSLv3 or TLSv1.* */ |
1684 | const SSL_METHOD *SSLv23_server_method(void); /* SSLv3 or TLSv1.* */ | 1680 | const SSL_METHOD *SSLv23_server_method(void); /* SSLv3 or TLSv1.* */ |
1685 | const SSL_METHOD *SSLv23_client_method(void); /* SSLv3 or TLSv1.* */ | 1681 | const SSL_METHOD *SSLv23_client_method(void); /* SSLv3 or TLSv1.* */ |