mirror of
https://github.com/gchq/CyberChef
synced 2025-01-26 03:05:06 +00:00
Add tests
This commit is contained in:
parent
6500d05bf3
commit
a4416a2260
2 changed files with 36 additions and 0 deletions
|
@ -52,5 +52,23 @@ TestRegister.addTests([
|
||||||
{ "op": "BLAKE2b",
|
{ "op": "BLAKE2b",
|
||||||
"args": ["128", "Hex", {string: "pseudorandom key", option: "UTF8"}] }
|
"args": ["128", "Hex", {string: "pseudorandom key", option: "UTF8"}] }
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "BLAKE2b: 224 - Hello World",
|
||||||
|
input: "Hello World",
|
||||||
|
expectedOutput: "19790463ef4ad09bdb724e3a6550c640593d4870f6e192ac8147f35d",
|
||||||
|
recipeConfig: [
|
||||||
|
{ "op": "BLAKE2b",
|
||||||
|
"args": ["224", "Hex", {string: "", option: "UTF8"}] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "BLAKE2b: 192 - Hello World",
|
||||||
|
input: "Hello World",
|
||||||
|
expectedOutput: "317d59b18418b8a12623faf5ebc2072e5e70ac4b8ba6d33a",
|
||||||
|
recipeConfig: [
|
||||||
|
{ "op": "BLAKE2b",
|
||||||
|
"args": ["192", "Hex", {string: "", option: "UTF8"}] }
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -43,5 +43,23 @@ TestRegister.addTests([
|
||||||
{ "op": "BLAKE2s",
|
{ "op": "BLAKE2s",
|
||||||
"args": ["128", "Hex", {string: "", option: "UTF8"}] }
|
"args": ["128", "Hex", {string: "", option: "UTF8"}] }
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "BLAKE2s: 224 - Hello World",
|
||||||
|
input: "Hello World",
|
||||||
|
expectedOutput: "8a74d9e5c5de9c8a0cb1c292f65808831717e422302f3d58853d58ed",
|
||||||
|
recipeConfig: [
|
||||||
|
{ "op": "BLAKE2s",
|
||||||
|
"args": ["224", "Hex", {string: "", option: "UTF8"}] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "BLAKE2s: 192 - Hello World",
|
||||||
|
input: "Hello World",
|
||||||
|
expectedOutput: "cc181c0f167a1727308d894c6182bbe6c4865698e7f7bfac",
|
||||||
|
recipeConfig: [
|
||||||
|
{ "op": "BLAKE2s",
|
||||||
|
"args": ["192", "Hex", {string: "", option: "UTF8"}] }
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Reference in a new issue