mirror of
https://github.com/gchq/CyberChef.git
synced 2025-06-14 10:14:53 -04:00
Changed delimitor to None so non-hex characters can be detected.
This commit is contained in:
parent
1a6d238537
commit
e231d1b37a
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ class XOR extends Operation {
|
|||
run(input, args) {
|
||||
input = new Uint8Array(input);
|
||||
try {
|
||||
const key = Utils.convertToByteArray(args[0].string || "", args[0].option, true),
|
||||
const key = Utils.convertToByteArray(args[0].string || "", args[0].option, "None", true),
|
||||
[, scheme, nullPreserving] = args;
|
||||
|
||||
return bitOp(input, key, xor, nullPreserving, scheme);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue