diff options
-rw-r--r-- | src/regress/lib/libcrypto/wycheproof/wycheproof.go | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/regress/lib/libcrypto/wycheproof/wycheproof.go b/src/regress/lib/libcrypto/wycheproof/wycheproof.go index 1213f5ee0e..b3c9225bb6 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.140 2023/03/25 09:17:14 tb Exp $ */ | 1 | /* $OpenBSD: wycheproof.go,v 1.141 2023/03/25 09:21:17 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> |
@@ -527,6 +527,7 @@ var nids = map[string]int{ | |||
527 | "brainpoolP320t1": C.NID_brainpoolP320t1, | 527 | "brainpoolP320t1": C.NID_brainpoolP320t1, |
528 | "brainpoolP384t1": C.NID_brainpoolP384t1, | 528 | "brainpoolP384t1": C.NID_brainpoolP384t1, |
529 | "brainpoolP512t1": C.NID_brainpoolP512t1, | 529 | "brainpoolP512t1": C.NID_brainpoolP512t1, |
530 | "FRP256v1": C.NID_FRP256v1, | ||
530 | "secp160k1": C.NID_secp160k1, | 531 | "secp160k1": C.NID_secp160k1, |
531 | "secp160r1": C.NID_secp160r1, | 532 | "secp160r1": C.NID_secp160r1, |
532 | "secp160r2": C.NID_secp160r2, | 533 | "secp160r2": C.NID_secp160r2, |
@@ -1592,11 +1593,6 @@ func runECDHTest(nid int, variant testVariant, wt *wycheproofTestECDH) bool { | |||
1592 | } | 1593 | } |
1593 | 1594 | ||
1594 | func runECDHTestGroup(algorithm string, variant testVariant, wtg *wycheproofTestGroupECDH) bool { | 1595 | func runECDHTestGroup(algorithm string, variant testVariant, wtg *wycheproofTestGroupECDH) bool { |
1595 | if wtg.Curve == "FRP256v1" { | ||
1596 | fmt.Printf("INFO: Skipping %v test group %v with curve %v and %v encoding...\n", algorithm, wtg.Type, wtg.Curve, wtg.Encoding) | ||
1597 | return true | ||
1598 | } | ||
1599 | |||
1600 | fmt.Printf("Running %v test group %v with curve %v and %v encoding...\n", | 1596 | fmt.Printf("Running %v test group %v with curve %v and %v encoding...\n", |
1601 | algorithm, wtg.Type, wtg.Curve, wtg.Encoding) | 1597 | algorithm, wtg.Type, wtg.Curve, wtg.Encoding) |
1602 | 1598 | ||