mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-24 16:56:15 -04:00
start of math operations
This commit is contained in:
parent
47ce240e70
commit
ae8d1f2178
2 changed files with 149 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
import Arithmetic from "../operations/Arithmetic.js";
|
||||
import Base from "../operations/Base.js";
|
||||
import Base58 from "../operations/Base58.js";
|
||||
import Base64 from "../operations/Base64.js";
|
||||
|
@ -656,6 +657,24 @@ const OperationConfig = {
|
|||
}
|
||||
]
|
||||
},
|
||||
"Arithmetic": {
|
||||
module: "Default",
|
||||
description: "Conducts mathamatical operations on a list of numbers",
|
||||
inputType: "string"
|
||||
outputType: "string"
|
||||
args: [
|
||||
{
|
||||
name: "Delimiter",
|
||||
type: "option",
|
||||
value: Arithmetic.DELIM_OPTIONS
|
||||
},
|
||||
{
|
||||
name: "Operation"
|
||||
type: "option",
|
||||
value: Arithmetic.OPERATIONS
|
||||
}
|
||||
]
|
||||
},
|
||||
"From Hexdump": {
|
||||
module: "Default",
|
||||
description: "Attempts to convert a hexdump back into raw data. This operation supports many different hexdump variations, but probably not all. Make sure you verify that the data it gives you is correct before continuing analysis.",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue