diff options
author | tb <> | 2020-08-08 10:21:22 +0000 |
---|---|---|
committer | tb <> | 2020-08-08 10:21:22 +0000 |
commit | 6fea4ce7c01be8942e2bcb4f672dede119751ed6 (patch) | |
tree | 7758f0e548ddb67e29351d8ffbec8f91db9d82ac /src | |
parent | 28bfaf84059fc3a58ae4c0b63832c473a4a6c928 (diff) | |
download | openbsd-6fea4ce7c01be8942e2bcb4f672dede119751ed6.tar.gz openbsd-6fea4ce7c01be8942e2bcb4f672dede119751ed6.tar.bz2 openbsd-6fea4ce7c01be8942e2bcb4f672dede119751ed6.zip |
Session resumption is not currently supported for TLSv1.3.
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py b/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py index 74f4ed937e..163db899c2 100644 --- a/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py +++ b/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: tlsfuzzer.py,v 1.12 2020/08/08 10:06:49 tb Exp $ | 1 | # $OpenBSD: tlsfuzzer.py,v 1.13 2020/08/08 10:21:22 tb Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> | 3 | # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> |
4 | # | 4 | # |
@@ -169,9 +169,6 @@ tls13_slow_failing_tests = TestGroup("slow, failing TLSv1.3 tests", [ | |||
169 | Test("test-tls13-pkcs-signature.py"), | 169 | Test("test-tls13-pkcs-signature.py"), |
170 | # 8 tests fail: 'tls13 signature rsa_pss_{pss,rsae}_sha{256,384,512} | 170 | # 8 tests fail: 'tls13 signature rsa_pss_{pss,rsae}_sha{256,384,512} |
171 | Test("test-tls13-rsapss-signatures.py"), | 171 | Test("test-tls13-rsapss-signatures.py"), |
172 | |||
173 | # ExpectNewSessionTicket | ||
174 | Test("test-tls13-session-resumption.py"), | ||
175 | ]) | 172 | ]) |
176 | 173 | ||
177 | tls13_unsupported_tests = TestGroup("TLSv1.3 tests for unsupported features", [ | 174 | tls13_unsupported_tests = TestGroup("TLSv1.3 tests for unsupported features", [ |
@@ -192,6 +189,9 @@ tls13_unsupported_tests = TestGroup("TLSv1.3 tests for unsupported features", [ | |||
192 | # UnboundLocalError: local variable 'cert' referenced before assignment | 189 | # UnboundLocalError: local variable 'cert' referenced before assignment |
193 | Test("test-tls13-post-handshake-auth.py"), | 190 | Test("test-tls13-post-handshake-auth.py"), |
194 | 191 | ||
192 | # ExpectNewSessionTicket | ||
193 | Test("test-tls13-session-resumption.py"), | ||
194 | |||
195 | # Server must be configured to support only rsa_pss_rsae_sha512 | 195 | # Server must be configured to support only rsa_pss_rsae_sha512 |
196 | Test("test-tls13-signature-algorithms.py"), | 196 | Test("test-tls13-signature-algorithms.py"), |
197 | ]) | 197 | ]) |