summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2026-08-11 18:25:42 +0000
committertb <>2026-08-11 18:25:42 +0000
commit15f3187fcc6e665c994c8fd88e2ffaef5c6d7a27 (patch)
tree3737be6e35c21e60aca4db9f7984e73514a7bc94
parent303993803a903836ebdee023fdaa9f772f2fcb05 (diff)
downloadopenbsd-15f3187fcc6e665c994c8fd88e2ffaef5c6d7a27.tar.gz
openbsd-15f3187fcc6e665c994c8fd88e2ffaef5c6d7a27.tar.bz2
openbsd-15f3187fcc6e665c994c8fd88e2ffaef5c6d7a27.zip
wycheproof: recognize Cobblestone-{128,256}
-rw-r--r--src/regress/lib/libcrypto/wycheproof/wycheproof.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/wycheproof/wycheproof.go b/src/regress/lib/libcrypto/wycheproof/wycheproof.go
index 06f53fb4d6..7f000b454f 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.204 2026/05/04 19:15:45 tb Exp $ */ 1/* $OpenBSD: wycheproof.go,v 1.205 2026/08/11 18:25:42 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>
@@ -3085,6 +3085,8 @@ func testGroupFromTestVector(wtv *wycheproofTestVectorsV1) (wycheproofTestGroupR
3085 return nil, Skip 3085 return nil, Skip
3086 case "CHACHA20-POLY1305", "XCHACHA20-POLY1305": 3086 case "CHACHA20-POLY1305", "XCHACHA20-POLY1305":
3087 return &wycheproofTestGroupChaCha{}, variant 3087 return &wycheproofTestGroupChaCha{}, variant
3088 case "Cobblestone-128", "Cobblestone-256":
3089 return nil, Skip
3088 case "DSA": 3090 case "DSA":
3089 if wtv.Schema == "dsa_p1363_verify_schema_v1.json" { 3091 if wtv.Schema == "dsa_p1363_verify_schema_v1.json" {
3090 variant = P1363 3092 variant = P1363