mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 14:11:02 +01:00
byte length argument added to ToBinary
This commit is contained in:
parent
953a581a94
commit
9dba1232b7
@ -31,6 +31,11 @@ class ToBinary extends Operation {
|
|||||||
"name": "Delimiter",
|
"name": "Delimiter",
|
||||||
"type": "option",
|
"type": "option",
|
||||||
"value": BIN_DELIM_OPTIONS
|
"value": BIN_DELIM_OPTIONS
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Byte Length",
|
||||||
|
"type": "number",
|
||||||
|
"value": 8
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
@ -42,7 +47,8 @@ class ToBinary extends Operation {
|
|||||||
*/
|
*/
|
||||||
run(input, args) {
|
run(input, args) {
|
||||||
input = new Uint8Array(input);
|
input = new Uint8Array(input);
|
||||||
return toBinary(input, args[0]);
|
const padding = args[1] ? args[1] : 8;
|
||||||
|
return toBinary(input, args[0], padding);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user