diff options
author | tb <> | 2023-04-17 15:11:00 +0000 |
---|---|---|
committer | tb <> | 2023-04-17 15:11:00 +0000 |
commit | e85021b1d1dc0e7515d105d276a9c77fc5a9cb22 (patch) | |
tree | 906ef7f2830e0dcd93fc22883a5b59564e6fa974 /src | |
parent | eee07eccd0ae3d14ee41b3abdaffca9c58db65de (diff) | |
download | openbsd-e85021b1d1dc0e7515d105d276a9c77fc5a9cb22.tar.gz openbsd-e85021b1d1dc0e7515d105d276a9c77fc5a9cb22.tar.bz2 openbsd-e85021b1d1dc0e7515d105d276a9c77fc5a9cb22.zip |
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 'src')
-rw-r--r-- | src/regress/lib/libcrypto/wycheproof/wycheproof.go | 4 |
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 0f66212fb9..b0485d27d6 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.143 2023/04/06 08:41:53 tb Exp $ */ | 1 | /* $OpenBSD: wycheproof.go,v 1.144 2023/04/17 15:11:00 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> |
4 | * Copyright (c) 2018,2019,2022 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2018,2019,2022 Theo Buehler <tb@openbsd.org> |
@@ -2956,7 +2956,7 @@ func main() { | |||
2956 | 2956 | ||
2957 | testc = newTestCoordinator() | 2957 | testc = newTestCoordinator() |
2958 | 2958 | ||
2959 | skipNormal := regexp.MustCompile(`_(ecpoint|p1363|sha3|sha512_(224|256))_`) | 2959 | skipNormal := regexp.MustCompile(`_(ecpoint|p1363|sha3|sha512_(224|256)|sect\d{3}[rk]1)_`) |
2960 | 2960 | ||
2961 | for _, test := range tests { | 2961 | for _, test := range tests { |
2962 | tvs, err := filepath.Glob(filepath.Join(testVectorPath, test.pattern)) | 2962 | tvs, err := filepath.Glob(filepath.Join(testVectorPath, test.pattern)) |