diff options
author | tb <> | 2025-09-05 11:11:07 +0000 |
---|---|---|
committer | tb <> | 2025-09-05 11:11:07 +0000 |
commit | 67a67cd6ff6b0d07f631c88890c5cdb81282221b (patch) | |
tree | 5ba5eb46bb113e168fe4d637022a530e96dd55b8 /src | |
parent | f104885e31deb73cf35b5eb22042896db334a317 (diff) | |
download | openbsd-67a67cd6ff6b0d07f631c88890c5cdb81282221b.tar.gz openbsd-67a67cd6ff6b0d07f631c88890c5cdb81282221b.tar.bz2 openbsd-67a67cd6ff6b0d07f631c88890c5cdb81282221b.zip |
wycheproof: move AES to v1 and explicitly skip gmac test
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/wycheproof/wycheproof.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regress/lib/libcrypto/wycheproof/wycheproof.go b/src/regress/lib/libcrypto/wycheproof/wycheproof.go index 4326f0f6f5..86e8c28dd3 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.172 2025/09/04 17:06:34 tb Exp $ */ | 1 | /* $OpenBSD: wycheproof.go,v 1.173 2025/09/05 11:11:07 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-2024 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2018,2019,2022-2024 Theo Buehler <tb@openbsd.org> |
@@ -2756,7 +2756,7 @@ func main() { | |||
2756 | pattern string | 2756 | pattern string |
2757 | variant testVariant | 2757 | variant testVariant |
2758 | }{ | 2758 | }{ |
2759 | {v0, "AES", "aes_[cg]*[^xv]_test.json", Normal}, // Skip AES-EAX, AES-GCM-SIV and AES-SIV-CMAC. | 2759 | {v1, "AES", "aes_[cg]*[^xv]_test.json", Normal}, // Skip AES-EAX, AES-GCM-SIV and AES-SIV-CMAC. |
2760 | {v1, "ChaCha20-Poly1305", "chacha20_poly1305_test.json", Normal}, | 2760 | {v1, "ChaCha20-Poly1305", "chacha20_poly1305_test.json", Normal}, |
2761 | {v1, "DSA", "dsa_*test.json", Normal}, | 2761 | {v1, "DSA", "dsa_*test.json", Normal}, |
2762 | {v1, "DSA", "dsa_*_p1363_test.json", P1363}, | 2762 | {v1, "DSA", "dsa_*_p1363_test.json", P1363}, |
@@ -2795,7 +2795,7 @@ func main() { | |||
2795 | 2795 | ||
2796 | testc = newTestCoordinator() | 2796 | testc = newTestCoordinator() |
2797 | 2797 | ||
2798 | skipNormal := regexp.MustCompile(`_(ecpoint|p1363|sect\d{3}[rk]1|secp(160|192))_`) | 2798 | skipNormal := regexp.MustCompile(`_(ecpoint|gmac|p1363|sect\d{3}[rk]1|secp(160|192))_`) |
2799 | 2799 | ||
2800 | for _, test := range tests { | 2800 | for _, test := range tests { |
2801 | path := testVectorPath | 2801 | path := testVectorPath |