mirror of
https://github.com/gchq/CyberChef
synced 2025-12-15 15:53:30 +00:00
start of math operations
This commit is contained in:
@@ -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";
|
||||
@@ -657,6 +658,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.",
|
||||
|
||||
Reference in New Issue
Block a user