summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto
diff options
context:
space:
mode:
authortb <>2026-04-21 20:55:21 +0000
committertb <>2026-04-21 20:55:21 +0000
commit663fcbae236d58cdbdb79f281892e6bbaaeae55d (patch)
tree487426c0ba475c370f2680453674edbcda9e32cd /src/regress/lib/libcrypto
parente49896f3e98ab36fd145e494a248c83a5a46a84b (diff)
downloadopenbsd-663fcbae236d58cdbdb79f281892e6bbaaeae55d.tar.gz
openbsd-663fcbae236d58cdbdb79f281892e6bbaaeae55d.tar.bz2
openbsd-663fcbae236d58cdbdb79f281892e6bbaaeae55d.zip
wycheproof: skip BLS test vectors to prepare for update
Diffstat (limited to 'src/regress/lib/libcrypto')
-rw-r--r--src/regress/lib/libcrypto/wycheproof/wycheproof.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/wycheproof/wycheproof.go b/src/regress/lib/libcrypto/wycheproof/wycheproof.go
index 0004e8e916..d36cd18de4 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.201 2026/01/22 09:08:56 tb Exp $ */ 1/* $OpenBSD: wycheproof.go,v 1.202 2026/04/21 20:55:21 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2018,2023 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2018,2023 Joel Sing <jsing@openbsd.org>
4 * Copyright (c) 2018,2019,2022-2025 Theo Buehler <tb@openbsd.org> 4 * Copyright (c) 2018,2019,2022-2025 Theo Buehler <tb@openbsd.org>
@@ -3079,6 +3079,8 @@ func testGroupFromTestVector(wtv *wycheproofTestVectorsV1) (wycheproofTestGroupR
3079 return nil, Skip 3079 return nil, Skip
3080 case "ASCON128", "ASCON128A", "ASCON80PQ": 3080 case "ASCON128", "ASCON128A", "ASCON80PQ":
3081 return nil, Skip 3081 return nil, Skip
3082 case "BLS":
3083 return nil, Skip
3082 case "CAMELLIA-CBC-PKCS5", "CAMELLIA-CCM", "CAMELLIA-CMAC", "CAMELLIA-WRAP": 3084 case "CAMELLIA-CBC-PKCS5", "CAMELLIA-CCM", "CAMELLIA-CMAC", "CAMELLIA-WRAP":
3083 return nil, Skip 3085 return nil, Skip
3084 case "CHACHA20-POLY1305", "XCHACHA20-POLY1305": 3086 case "CHACHA20-POLY1305", "XCHACHA20-POLY1305":