diff options
author | 2020-06-24 07:29:21 +0000 | |
---|---|---|
committer | 2020-06-24 07:29:21 +0000 | |
commit | a115449fbe4c164f2400ab0b72e76899222ea92c (patch) | |
tree | 2064a16004b7c97c8076826b3d81196ae6e985f5 /regress/lib/libssl/tlsfuzzer | |
parent | Enforce restrictions for ClientHello extensions (diff) | |
download | wireguard-openbsd-a115449fbe4c164f2400ab0b72e76899222ea92c.tar.xz wireguard-openbsd-a115449fbe4c164f2400ab0b72e76899222ea92c.zip |
enable test-tls13-keyshare-omitted.py
Diffstat (limited to 'regress/lib/libssl/tlsfuzzer')
-rw-r--r-- | regress/lib/libssl/tlsfuzzer/tlsfuzzer.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py b/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py index 81c6ac14d21..1406b6039f0 100644 --- a/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py +++ b/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py @@ -1,4 +1,4 @@ -# $OpenBSD: tlsfuzzer.py,v 1.10 2020/06/24 06:03:22 tb Exp $ +# $OpenBSD: tlsfuzzer.py,v 1.11 2020/06/24 07:29:21 tb Exp $ # # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> # @@ -76,6 +76,7 @@ tls13_tests = TestGroup("TLSv1.3 tests", [ Test("test-tls13-empty-alert.py"), Test("test-tls13-finished-plaintext.py"), Test("test-tls13-hrr.py"), + Test("test-tls13-keyshare-omitted.py"), Test("test-tls13-legacy-version.py"), Test("test-tls13-nociphers.py"), Test("test-tls13-record-padding.py"), @@ -128,10 +129,6 @@ tls13_failing_tests = TestGroup("failing TLSv1.3 tests", [ Test("test-tls13-crfg-curves.py"), Test("test-tls13-ecdhe-curves.py"), - # Expects a missing_extensions alert - # AssertionError: Unexpected message from peer: Handshake(server_hello) - Test("test-tls13-keyshare-omitted.py"), - # https://github.com/openssl/openssl/issues/8369 Test("test-tls13-obsolete-curves.py"), |