diff options
author | 2020-08-08 10:21:22 +0000 | |
---|---|---|
committer | 2020-08-08 10:21:22 +0000 | |
commit | 390e08e82a73a87d1a8f74d6a362c1298a441dfc (patch) | |
tree | adb4f108e02dc49a04557672e57abd1c520a729e | |
parent | Enable P-521 and run the tests that use it. (diff) | |
download | wireguard-openbsd-390e08e82a73a87d1a8f74d6a362c1298a441dfc.tar.xz wireguard-openbsd-390e08e82a73a87d1a8f74d6a362c1298a441dfc.zip |
Session resumption is not currently supported for TLSv1.3.
-rw-r--r-- | regress/lib/libssl/tlsfuzzer/tlsfuzzer.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py b/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py index 74f4ed937e3..163db899c25 100644 --- a/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py +++ b/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py @@ -1,4 +1,4 @@ -# $OpenBSD: tlsfuzzer.py,v 1.12 2020/08/08 10:06:49 tb Exp $ +# $OpenBSD: tlsfuzzer.py,v 1.13 2020/08/08 10:21:22 tb Exp $ # # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> # @@ -169,9 +169,6 @@ tls13_slow_failing_tests = TestGroup("slow, failing TLSv1.3 tests", [ Test("test-tls13-pkcs-signature.py"), # 8 tests fail: 'tls13 signature rsa_pss_{pss,rsae}_sha{256,384,512} Test("test-tls13-rsapss-signatures.py"), - - # ExpectNewSessionTicket - Test("test-tls13-session-resumption.py"), ]) tls13_unsupported_tests = TestGroup("TLSv1.3 tests for unsupported features", [ @@ -192,6 +189,9 @@ tls13_unsupported_tests = TestGroup("TLSv1.3 tests for unsupported features", [ # UnboundLocalError: local variable 'cert' referenced before assignment Test("test-tls13-post-handshake-auth.py"), + # ExpectNewSessionTicket + Test("test-tls13-session-resumption.py"), + # Server must be configured to support only rsa_pss_rsae_sha512 Test("test-tls13-signature-algorithms.py"), ]) |