mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-24 16:56:15 -04:00
Merge pull request #123 from gchq/feature-comment
Feature: 'Comment' operation
This commit is contained in:
commit
c7611fbc05
4 changed files with 59 additions and 0 deletions
|
@ -295,6 +295,7 @@ const Categories = [
|
|||
"Jump",
|
||||
"Conditional Jump",
|
||||
"Return",
|
||||
"Comment"
|
||||
]
|
||||
},
|
||||
];
|
||||
|
|
|
@ -162,6 +162,20 @@ const OperationConfig = {
|
|||
flowControl: true,
|
||||
args: []
|
||||
},
|
||||
"Comment": {
|
||||
description: "Provides a place to write comments within the flow of the recipe. This operation has no computational effect.",
|
||||
run: FlowControl.runComment,
|
||||
inputType: "string",
|
||||
outputType: "string",
|
||||
flowControl: true,
|
||||
args: [
|
||||
{
|
||||
name: "",
|
||||
type: "text",
|
||||
value: ""
|
||||
}
|
||||
]
|
||||
},
|
||||
"From Base64": {
|
||||
description: "Base64 is a notation for encoding arbitrary byte data using a restricted set of symbols that can be conveniently used by humans and processed by computers.<br><br>This operation decodes data from an ASCII Base64 string back into its raw format.<br><br>e.g. <code>aGVsbG8=</code> becomes <code>hello</code>",
|
||||
run: Base64.runFrom,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue