Fixed incorrect wording for RC4 Drop argument.

This commit is contained in:
n1474335 2022-04-14 11:55:34 +01:00
parent 7c66dacc40
commit ccaabfaee8
2 changed files with 3 additions and 3 deletions

View file

@ -43,9 +43,9 @@ class RC4Drop extends Operation {
"value": ["Latin1", "UTF8", "UTF16", "UTF16LE", "UTF16BE", "Hex", "Base64"] "value": ["Latin1", "UTF8", "UTF16", "UTF16LE", "UTF16BE", "Hex", "Base64"]
}, },
{ {
"name": "Number of bytes to drop", "name": "Number of dwords to drop",
"type": "number", "type": "number",
"value": 768 "value": 192
} }
]; ];
} }

View file

@ -816,7 +816,7 @@ pCGTErs=
it("RC4 Drop", () => { it("RC4 Drop", () => {
assert.strictEqual( assert.strictEqual(
chef.RC4Drop("Go Out On a Limb", {passphrase: {string: "Under Your Nose", option: "UTF8"}, inputFormat: "UTF8", outputFormat: "Hex"}).toString(), chef.RC4Drop("Go Out On a Limb", {passphrase: {string: "Under Your Nose", option: "UTF8"}, inputFormat: "UTF8", outputFormat: "Hex"}).toString(),
"8fa5f2751d34476a0c857439f43816cf"); "b85cb1c4ed6bed8f260ab92829bba942");
}), }),
it("Regular Expression", () => { it("Regular Expression", () => {