Add a regression test for BLAKE3: 16390 case

This commit is contained in:
GCHQDeveloper581 2026-04-29 17:36:02 +00:00
parent a862c62187
commit b0fb634507
No known key found for this signature in database
GPG Key ID: 6222E059A3DF595C

View File

@ -51,5 +51,14 @@ TestRegister.addTests([
{ "op": "BLAKE3", { "op": "BLAKE3",
"args": [8, "ThiskeyisexactlythirtytwoByteslo"] } "args": [8, "ThiskeyisexactlythirtytwoByteslo"] }
] ]
},
{
name: "BLAKE3: 16390 - test",
input: "test",
expectedMatch: /4878.{32760}555fe06b242738d5/,
recipeConfig: [
{ "op": "BLAKE3",
"args": [16390, ""] }
]
} }
]); ]);