summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortb <tb@openbsd.org>2020-06-19 21:29:41 +0000
committertb <tb@openbsd.org>2020-06-19 21:29:41 +0000
commit44072c60256e69240df075cb1b556c9641bedec7 (patch)
treec251f076f16909b22cadb5856cddf11d3244c62e
parentWe inherited the constant time CBC padding removal from BoringSSL, but (diff)
downloadwireguard-openbsd-44072c60256e69240df075cb1b556c9641bedec7.tar.xz
wireguard-openbsd-44072c60256e69240df075cb1b556c9641bedec7.zip
Enable lucky 13 test.
-rw-r--r--regress/lib/libssl/tlsfuzzer/tlsfuzzer.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py b/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py
index 76444a69888..c0d172ac05d 100644
--- a/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py
+++ b/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py
@@ -1,4 +1,4 @@
-# $OpenBSD: tlsfuzzer.py,v 1.8 2020/06/10 22:14:37 tb Exp $
+# $OpenBSD: tlsfuzzer.py,v 1.9 2020/06/19 21:29:41 tb Exp $
#
# Copyright (c) 2020 Theo Buehler <tb@openbsd.org>
#
@@ -236,6 +236,7 @@ tls12_tests = TestGroup("TLSv1.2 tests", [
Test("test-invalid-content-type.py"),
Test("test-invalid-session-id.py"),
Test("test-invalid-version.py"),
+ Test("test-lucky13.py"),
Test("test-message-skipping.py"),
Test("test-no-heartbeat.py"),
Test("test-sessionID-resumption.py"),
@@ -290,10 +291,6 @@ tls12_failing_tests = TestGroup("failing TLSv1.2 tests", [
# many tests fail due to unexpected server_name extension
Test("test-bleichenbacher-workaround.py"),
- # timeout:
- # 'padding of length 255 (256 with the length byte), error at position 0'
- Test("test-lucky13.py"),
-
# need client key and cert plus extra server setup
Test("test-certificate-malformed.py"),
Test("test-certificate-request.py"),