diff options
author | tb <> | 2020-06-10 22:14:37 +0000 |
---|---|---|
committer | tb <> | 2020-06-10 22:14:37 +0000 |
commit | 156b9a70f6b69b6e54d32a4182d4bd06cfb5256b (patch) | |
tree | d315e76ccada4159018661ba1d17a471e870a880 /src/regress/lib/libssl/tlsfuzzer | |
parent | 9e81fc6417e741447e8d0a81c8a3a794624aa6c8 (diff) | |
download | openbsd-156b9a70f6b69b6e54d32a4182d4bd06cfb5256b.tar.gz openbsd-156b9a70f6b69b6e54d32a4182d4bd06cfb5256b.tar.bz2 openbsd-156b9a70f6b69b6e54d32a4182d4bd06cfb5256b.zip |
Add lucky13 and bleichenbacher-timing tests
Diffstat (limited to 'src/regress/lib/libssl/tlsfuzzer')
-rw-r--r-- | src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py b/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py index f81bf558f4..76444a6988 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.7 2020/06/06 01:40:08 beck Exp $ | 1 | # $OpenBSD: tlsfuzzer.py,v 1.8 2020/06/10 22:14:37 tb Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> | 3 | # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> |
4 | # | 4 | # |
@@ -290,6 +290,10 @@ tls12_failing_tests = TestGroup("failing TLSv1.2 tests", [ | |||
290 | # many tests fail due to unexpected server_name extension | 290 | # many tests fail due to unexpected server_name extension |
291 | Test("test-bleichenbacher-workaround.py"), | 291 | Test("test-bleichenbacher-workaround.py"), |
292 | 292 | ||
293 | # timeout: | ||
294 | # 'padding of length 255 (256 with the length byte), error at position 0' | ||
295 | Test("test-lucky13.py"), | ||
296 | |||
293 | # need client key and cert plus extra server setup | 297 | # need client key and cert plus extra server setup |
294 | Test("test-certificate-malformed.py"), | 298 | Test("test-certificate-malformed.py"), |
295 | Test("test-certificate-request.py"), | 299 | Test("test-certificate-request.py"), |
@@ -441,6 +445,8 @@ tls12_failing_tests = TestGroup("failing TLSv1.2 tests", [ | |||
441 | tls12_unsupported_tests = TestGroup("TLSv1.2 for unsupported features", [ | 445 | tls12_unsupported_tests = TestGroup("TLSv1.2 for unsupported features", [ |
442 | # protocol_version | 446 | # protocol_version |
443 | Test("test-SSLv3-padding.py"), | 447 | Test("test-SSLv3-padding.py"), |
448 | # we don't do RSA key exchanges | ||
449 | Test("test-bleichenbacher-timing.py"), | ||
444 | ]) | 450 | ]) |
445 | 451 | ||
446 | # These tests take a ton of time to fail against an 1.3 server, | 452 | # These tests take a ton of time to fail against an 1.3 server, |