27 lines
980 B
Diff
27 lines
980 B
Diff
From b1aad8f273dfec7641b31bfbeaebfb921e27122a Mon Sep 17 00:00:00 2001
|
|
From: Alex Gaynor <alex.gaynor@gmail.com>
|
|
Date: Sun, 12 Aug 2018 17:39:32 -0400
|
|
Subject: [PATCH] sigh, missed one TLSv1 (#4392)
|
|
|
|
---
|
|
tests/hazmat/bindings/test_openssl.py | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/hazmat/bindings/test_openssl.py b/tests/hazmat/bindings/test_openssl.py
|
|
index c0dbc9ba..f317f07f 100644
|
|
--- a/tests/hazmat/bindings/test_openssl.py
|
|
+++ b/tests/hazmat/bindings/test_openssl.py
|
|
@@ -65,7 +65,8 @@ class TestOpenSSL(object):
|
|
# Test that we're properly handling 32-bit unsigned on all platforms.
|
|
b = Binding()
|
|
assert b.lib.SSL_OP_ALL > 0
|
|
- ctx = b.lib.SSL_CTX_new(b.lib.TLSv1_method())
|
|
+ ctx = b.lib.SSL_CTX_new(b.lib.SSLv23_method())
|
|
+ assert ctx != b.ffi.NULL
|
|
ctx = b.ffi.gc(ctx, b.lib.SSL_CTX_free)
|
|
ssl = b.lib.SSL_new(ctx)
|
|
ssl = b.ffi.gc(ssl, b.lib.SSL_free)
|
|
--
|
|
2.19.1
|
|
|