From bfdb0b7a43e5bb18d237d77913cdb3e6868b8e28 Mon Sep 17 00:00:00 2001 From: tb <> Date: Wed, 27 Nov 2019 12:26:40 +0000 Subject: Skip tests with unsupported signature algorithm SHA512/224 as well. --- src/regress/lib/libcrypto/wycheproof/wycheproof.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/regress/lib/libcrypto/wycheproof/wycheproof.go b/src/regress/lib/libcrypto/wycheproof/wycheproof.go index 5ba8368661..2ae1c7e3c4 100644 --- a/src/regress/lib/libcrypto/wycheproof/wycheproof.go +++ b/src/regress/lib/libcrypto/wycheproof/wycheproof.go @@ -1,4 +1,4 @@ -/* $OpenBSD: wycheproof.go,v 1.90 2019/11/27 12:08:35 tb Exp $ */ +/* $OpenBSD: wycheproof.go,v 1.91 2019/11/27 12:26:40 tb Exp $ */ /* * Copyright (c) 2018 Joel Sing * Copyright (c) 2018 Theo Buehler @@ -2190,7 +2190,7 @@ func main() { success := true - skip := regexp.MustCompile(`_(p1363|sha3|sha512_256)_`) + skip := regexp.MustCompile(`_(p1363|sha3|sha512_(224|256))_`) for _, test := range tests { webcrypto := test.name == "ECDSAWebCrypto" || test.name == "ECDHWebCrypto" -- cgit v1.2.3-55-g6feb