summaryrefslogtreecommitdiff
path: root/regress/lib
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2023-04-17 15:11:01 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2023-04-17 15:11:01 +0000
commit36b71f7f379c7f53ea55a5be07574b7f89a8f20e (patch)
treea3ee314edb1d1dd325f1619ef13a2ad4139d0a17 /regress/lib
parentd12a263a4c540edc90422bf35c85525fdd497c40 (diff)
Skip sect* curve checks
GF2m curves will go away soon. This reduces the pile of diffs in my jungle a tiny little bit.
Diffstat (limited to 'regress/lib')
-rw-r--r--regress/lib/libcrypto/wycheproof/wycheproof.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libcrypto/wycheproof/wycheproof.go b/regress/lib/libcrypto/wycheproof/wycheproof.go
index 0f66212fb9f..b0485d27d6e 100644
--- a/regress/lib/libcrypto/wycheproof/wycheproof.go
+++ b/regress/lib/libcrypto/wycheproof/wycheproof.go
@@ -1,4 +1,4 @@
-/* $OpenBSD: wycheproof.go,v 1.143 2023/04/06 08:41:53 tb Exp $ */
+/* $OpenBSD: wycheproof.go,v 1.144 2023/04/17 15:11:00 tb Exp $ */
/*
* Copyright (c) 2018 Joel Sing <jsing@openbsd.org>
* Copyright (c) 2018,2019,2022 Theo Buehler <tb@openbsd.org>
@@ -2956,7 +2956,7 @@ func main() {
testc = newTestCoordinator()
- skipNormal := regexp.MustCompile(`_(ecpoint|p1363|sha3|sha512_(224|256))_`)
+ skipNormal := regexp.MustCompile(`_(ecpoint|p1363|sha3|sha512_(224|256)|sect\d{3}[rk]1)_`)
for _, test := range tests {
tvs, err := filepath.Glob(filepath.Join(testVectorPath, test.pattern))