mirror of
https://github.com/gchq/CyberChef
synced 2025-12-15 07:43:22 +00:00
Added MD6 operation. Closes #53
This commit is contained in:
@@ -2882,6 +2882,29 @@ const OperationConfig = {
|
||||
outputType: "string",
|
||||
args: []
|
||||
},
|
||||
"MD6": {
|
||||
description: "TODO",
|
||||
run: Hash.runMD6,
|
||||
inputType: "string",
|
||||
outputType: "string",
|
||||
args: [
|
||||
{
|
||||
name: "Size",
|
||||
type: "number",
|
||||
value: Hash.MD6_SIZE
|
||||
},
|
||||
{
|
||||
name: "Levels",
|
||||
type: "number",
|
||||
value: Hash.MD6_LEVELS
|
||||
},
|
||||
{
|
||||
name: "Key",
|
||||
type: "string",
|
||||
value: ""
|
||||
}
|
||||
]
|
||||
},
|
||||
"SHA0": {
|
||||
description: "SHA-0 is a retronym applied to the original version of the 160-bit hash function published in 1993 under the name 'SHA'. It was withdrawn shortly after publication due to an undisclosed 'significant flaw' and replaced by the slightly revised version SHA-1.",
|
||||
run: Hash.runSHA0,
|
||||
|
||||
Reference in New Issue
Block a user