start of math operations

This commit is contained in:
bwhitn 2017-12-17 15:19:10 -05:00
parent 47ce240e70
commit ae8d1f2178
2 changed files with 149 additions and 0 deletions

View file

@ -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.",