mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-30 16:57:29 -07:00
20 lines
809 B
Diff
20 lines
809 B
Diff
OpenSSL/test/test_ssl.py | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/OpenSSL/test/test_ssl.py b/OpenSSL/test/test_ssl.py
|
|
index bb1c9ae..d3bffe7 100644
|
|
--- a/OpenSSL/test/test_ssl.py
|
|
+++ b/OpenSSL/test/test_ssl.py
|
|
@@ -1416,6 +1416,11 @@ class ContextTests(TestCase, _LoopbackMixin):
|
|
"""
|
|
context = Context(TLSv1_METHOD)
|
|
for curve in get_elliptic_curves():
|
|
+ if curve.name.startswith(u"Oakley-"):
|
|
+ # Setting Oakley-EC2N-4 and Oakley-EC2N-3 adds
|
|
+ # ('bignum routines', 'BN_mod_inverse', 'no inverse') to the
|
|
+ # error queue on OpenSSL 1.0.2.
|
|
+ continue
|
|
# The only easily "assertable" thing is that it does not raise an
|
|
# exception.
|
|
context.set_tmp_ecdh(curve)
|