mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-26 09:46:17 -04:00
Tidied Morse Code operations to match the project conventions.
This commit is contained in:
parent
718e1dc153
commit
8f69ee441e
7 changed files with 42 additions and 210 deletions
|
@ -82,11 +82,11 @@ var Categories = [
|
|||
"XOR Brute Force",
|
||||
"Vigenère Encode",
|
||||
"Vigenère Decode",
|
||||
"To Morse Code",
|
||||
"From Morse Code",
|
||||
"Substitute",
|
||||
"Derive PBKDF2 key",
|
||||
"Derive EVP key",
|
||||
"To Morse code",
|
||||
"From Morse code",
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
@ -2953,9 +2953,9 @@ var OperationConfig = {
|
|||
}
|
||||
]
|
||||
},
|
||||
"To Morse code": {
|
||||
description: "Translates alphanumeric characters into International Morse code.<br><br>Ignores non-Morse characters.<br><br>e.g. SOS becomes ... --- ...",
|
||||
run: MorseCode.translateTo,
|
||||
"To Morse Code": {
|
||||
description: "Translates alphanumeric characters into International Morse Code.<br><br>Ignores non-Morse characters.<br><br>e.g. <code>SOS</code> becomes <code>... --- ...</code>",
|
||||
run: MorseCode.runTo,
|
||||
inputType: "string",
|
||||
outputType: "string",
|
||||
args: [
|
||||
|
@ -2976,9 +2976,9 @@ var OperationConfig = {
|
|||
}
|
||||
]
|
||||
},
|
||||
"From Morse code": {
|
||||
description: "Translates Morse code into (upper case) alphanumeric characters.",
|
||||
run: MorseCode.translateFrom,
|
||||
"From Morse Code": {
|
||||
description: "Translates Morse Code into (upper case) alphanumeric characters.",
|
||||
run: MorseCode.runFrom,
|
||||
inputType: "string",
|
||||
outputType: "string",
|
||||
args: [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue