summaryrefslogtreecommitdiff
path: root/regress/lib
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2019-11-27 12:26:41 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2019-11-27 12:26:41 +0000
commit8de1f7ce9ccf459a9a193ce07197d31b06a746bd (patch)
tree973db2bcb93eea8322237bdfb6f4ebcb20187ac8 /regress/lib
parent3f6df9e251f24241f6a87a6207b33234e9d0be62 (diff)
Skip tests with unsupported signature algorithm SHA512/224 as well.
Diffstat (limited to 'regress/lib')
-rw-r--r--regress/lib/libcrypto/wycheproof/wycheproof.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libcrypto/wycheproof/wycheproof.go b/regress/lib/libcrypto/wycheproof/wycheproof.go
index 5ba83686618..2ae1c7e3c4f 100644
--- a/regress/lib/libcrypto/wycheproof/wycheproof.go
+++ b/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 <jsing@openbsd.org>
* Copyright (c) 2018 Theo Buehler <tb@openbsd.org>
@@ -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"