XOR Brute Force operation now has a variable key length

This commit is contained in:
n1474335 2017-08-31 00:24:24 +01:00
parent d68523a54e
commit cb6708c02e
3 changed files with 44 additions and 20 deletions

View file

@ -325,13 +325,13 @@ const OperationConfig = {
},
"XOR Brute Force": {
module: "Default",
description: "Enumerate all possible XOR solutions. Current maximum key length is 2 due to browser performance.<br><br>Optionally enter a regex string that you expect to find in the plaintext to filter results (crib).",
description: "Enumerate all possible XOR solutions. Current maximum key length is 2 due to browser performance.<br><br>Optionally enter a string that you expect to find in the plaintext to filter results (crib).",
inputType: "byteArray",
outputType: "string",
args: [
{
name: "Key length",
type: "option",
type: "number",
value: BitwiseOp.XOR_BRUTE_KEY_LENGTH
},
{