From 67a67cd6ff6b0d07f631c88890c5cdb81282221b Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 5 Sep 2025 11:11:07 +0000 Subject: wycheproof: move AES to v1 and explicitly skip gmac test --- src/regress/lib/libcrypto/wycheproof/wycheproof.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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 @@ -/* $OpenBSD: wycheproof.go,v 1.172 2025/09/04 17:06:34 tb Exp $ */ +/* $OpenBSD: wycheproof.go,v 1.173 2025/09/05 11:11:07 tb Exp $ */ /* * Copyright (c) 2018,2023 Joel Sing * Copyright (c) 2018,2019,2022-2024 Theo Buehler @@ -2756,7 +2756,7 @@ func main() { pattern string variant testVariant }{ - {v0, "AES", "aes_[cg]*[^xv]_test.json", Normal}, // Skip AES-EAX, AES-GCM-SIV and AES-SIV-CMAC. + {v1, "AES", "aes_[cg]*[^xv]_test.json", Normal}, // Skip AES-EAX, AES-GCM-SIV and AES-SIV-CMAC. {v1, "ChaCha20-Poly1305", "chacha20_poly1305_test.json", Normal}, {v1, "DSA", "dsa_*test.json", Normal}, {v1, "DSA", "dsa_*_p1363_test.json", P1363}, @@ -2795,7 +2795,7 @@ func main() { testc = newTestCoordinator() - skipNormal := regexp.MustCompile(`_(ecpoint|p1363|sect\d{3}[rk]1|secp(160|192))_`) + skipNormal := regexp.MustCompile(`_(ecpoint|gmac|p1363|sect\d{3}[rk]1|secp(160|192))_`) for _, test := range tests { path := testVectorPath -- cgit v1.2.3-55-g6feb