summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl.h
diff options
context:
space:
mode:
authordoug <doug@openbsd.org>2015-08-27 06:21:15 +0000
committerdoug <doug@openbsd.org>2015-08-27 06:21:15 +0000
commitad8a4f4defc760164e2271b0a43a8d6331a93eaa (patch)
tree8dde52e8d47e15300a875fc3b4082d02fa829386 /lib/libssl/ssl.h
parentsimple sizes for free() (diff)
downloadwireguard-openbsd-ad8a4f4defc760164e2271b0a43a8d6331a93eaa.tar.xz
wireguard-openbsd-ad8a4f4defc760164e2271b0a43a8d6331a93eaa.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 'lib/libssl/ssl.h')
-rw-r--r--lib/libssl/ssl.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h
index 0cd220778b9..e7873f5ed49 100644
--- a/lib/libssl/ssl.h
+++ b/lib/libssl/ssl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl.h,v 1.92 2015/07/19 06:31:32 doug Exp $ */
+/* $OpenBSD: ssl.h,v 1.93 2015/08/27 06:21:15 doug Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -1676,10 +1676,6 @@ const char *SSL_get_version(const SSL *s);
/* This sets the 'default' SSL version that SSL_new() will create */
int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth);
-const SSL_METHOD *SSLv3_method(void); /* SSLv3 */
-const SSL_METHOD *SSLv3_server_method(void); /* SSLv3 */
-const SSL_METHOD *SSLv3_client_method(void); /* SSLv3 */
-
const SSL_METHOD *SSLv23_method(void); /* SSLv3 or TLSv1.* */
const SSL_METHOD *SSLv23_server_method(void); /* SSLv3 or TLSv1.* */
const SSL_METHOD *SSLv23_client_method(void); /* SSLv3 or TLSv1.* */