summarylogtreecommitdiffstats
path: root/python-3.3-ssl-nosslv3.patch
diff options
context:
space:
mode:
authorEric Berquist2016-03-19 20:23:37 -0400
committerEric Berquist2016-03-19 20:23:37 -0400
commit9cb559acc1982dd073f6bd7844878aee169b811b (patch)
tree4448a25fa7fbcf159be482ebc893aed365974ebf /python-3.3-ssl-nosslv3.patch
parentd5d1034068cf36ac701f5aaf17fdd00e9fd8a974 (diff)
downloadaur-9cb559acc1982dd073f6bd7844878aee169b811b.tar.gz
Add patch to remove SSLv3.
Diffstat (limited to 'python-3.3-ssl-nosslv3.patch')
-rw-r--r--python-3.3-ssl-nosslv3.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/python-3.3-ssl-nosslv3.patch b/python-3.3-ssl-nosslv3.patch
new file mode 100644
index 000000000000..90b38b96907a
--- /dev/null
+++ b/python-3.3-ssl-nosslv3.patch
@@ -0,0 +1,15 @@
+diff --git a/Modules/_ssl.c b/Modules/_ssl.c
+index 499e8ba..00a47d7 100644
+--- a/Modules/_ssl.c
++++ b/Modules/_ssl.c
+@@ -1746,8 +1746,10 @@ context_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
+ PySSL_BEGIN_ALLOW_THREADS
+ if (proto_version == PY_SSL_VERSION_TLS1)
+ ctx = SSL_CTX_new(TLSv1_method());
++#ifndef OPENSSL_NO_SSL3
+ else if (proto_version == PY_SSL_VERSION_SSL3)
+ ctx = SSL_CTX_new(SSLv3_method());
++#endif
+ #ifndef OPENSSL_NO_SSL2
+ else if (proto_version == PY_SSL_VERSION_SSL2)
+ ctx = SSL_CTX_new(SSLv2_method());