summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2026-05-04 19:15:45 +0000
committertb <>2026-05-04 19:15:45 +0000
commit4fd1a19b874e3d58e349c263a5e1919e96d07639 (patch)
tree82c7bf61b4a9a472dda35815fb950283a77aa45a /src
parente7eafba3b568c9f31dce079e7095ef3f965abf99 (diff)
downloadopenbsd-4fd1a19b874e3d58e349c263a5e1919e96d07639.tar.gz
openbsd-4fd1a19b874e3d58e349c263a5e1919e96d07639.tar.bz2
openbsd-4fd1a19b874e3d58e349c263a5e1919e96d07639.zip
wycheproof.go: simplfiy for loop
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/wycheproof/wycheproof.go4
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 780babfe80..06f53fb4d6 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.203 2026/05/04 19:11:01 tb Exp $ */ 1/* $OpenBSD: wycheproof.go,v 1.204 2026/05/04 19:15:45 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>
@@ -3192,7 +3192,7 @@ func runTestVectors(path string) bool {
3192 return wtg.run(wtv.Algorithm, variant) 3192 return wtg.run(wtv.Algorithm, variant)
3193 }) 3193 })
3194 } 3194 }
3195 for _ = range wtv.TestGroups { 3195 for range wtv.TestGroups {
3196 result := <-testc.resultCh 3196 result := <-testc.resultCh
3197 if !result { 3197 if !result {
3198 success = false 3198 success = false