diff options
author | tb <> | 2019-11-27 12:26:40 +0000 |
---|---|---|
committer | tb <> | 2019-11-27 12:26:40 +0000 |
commit | e8f9ab176a3c289271bfe230fb07f2831ddede87 (patch) | |
tree | f99b468b979958f730e5c8e7a2e8dabd9dbaf600 | |
parent | 72aa26ea5b3a271614b8cb532cc7ba87509adffe (diff) | |
download | openbsd-e8f9ab176a3c289271bfe230fb07f2831ddede87.tar.gz openbsd-e8f9ab176a3c289271bfe230fb07f2831ddede87.tar.bz2 openbsd-e8f9ab176a3c289271bfe230fb07f2831ddede87.zip |
Skip tests with unsupported signature algorithm SHA512/224 as well.
-rw-r--r-- | src/regress/lib/libcrypto/wycheproof/wycheproof.go | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ | |||
1 | /* $OpenBSD: wycheproof.go,v 1.90 2019/11/27 12:08:35 tb Exp $ */ | 1 | /* $OpenBSD: wycheproof.go,v 1.91 2019/11/27 12:26:40 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> |
4 | * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> |
@@ -2190,7 +2190,7 @@ func main() { | |||
2190 | 2190 | ||
2191 | success := true | 2191 | success := true |
2192 | 2192 | ||
2193 | skip := regexp.MustCompile(`_(p1363|sha3|sha512_256)_`) | 2193 | skip := regexp.MustCompile(`_(p1363|sha3|sha512_(224|256))_`) |
2194 | 2194 | ||
2195 | for _, test := range tests { | 2195 | for _, test := range tests { |
2196 | webcrypto := test.name == "ECDSAWebCrypto" || test.name == "ECDHWebCrypto" | 2196 | webcrypto := test.name == "ECDSAWebCrypto" || test.name == "ECDHWebCrypto" |