mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-24 16:56:15 -04:00
Changed inputType to ArrayBuffer for 'Frequency distribution', 'Chi Square' and 'Extract EXIF' operations.
This commit is contained in:
parent
50e4daeaf2
commit
e18ec5f2b2
3 changed files with 16 additions and 15 deletions
|
@ -3287,7 +3287,7 @@ const OperationConfig = {
|
|||
"Frequency distribution": {
|
||||
module: "Default",
|
||||
description: "Displays the distribution of bytes in the data as a graph.",
|
||||
inputType: "byteArray",
|
||||
inputType: "ArrayBuffer",
|
||||
outputType: "html",
|
||||
args: [
|
||||
{
|
||||
|
@ -3300,7 +3300,7 @@ const OperationConfig = {
|
|||
"Chi Square": {
|
||||
module: "Default",
|
||||
description: "Calculates the Chi Square distribution of values.",
|
||||
inputType: "byteArray",
|
||||
inputType: "ArrayBuffer",
|
||||
outputType: "number",
|
||||
args: []
|
||||
},
|
||||
|
@ -3740,7 +3740,7 @@ const OperationConfig = {
|
|||
"<br><br>",
|
||||
"EXIF data from photos usually contains information about the image file itself as well as the device used to create it.",
|
||||
].join("\n"),
|
||||
inputType: "byteArray",
|
||||
inputType: "ArrayBuffer",
|
||||
outputType: "string",
|
||||
args: [],
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue