Merge branch 'master' of https://github.com/maqifrnswa/CyberChef into maqifrnswa-master

This commit is contained in:
n1474335 2021-02-01 19:27:24 +00:00
commit 1baea1da3d
1 changed files with 1 additions and 8 deletions

View File

@ -46,7 +46,7 @@ class RailFenceCipherDecode extends Operation {
run(input, args) {
const [key, offset] = args;
let cipher = input;
const cipher = input;
if (key < 2) {
throw new OperationError("Key has to be bigger than 2");
@ -59,13 +59,6 @@ class RailFenceCipherDecode extends Operation {
}
const cycle = (key - 1) * 2;
const rest = cipher.length % key;
if (rest !== 0) {
cipher = cipher + (" ".repeat(key - rest));
}
const plaintext = new Array(cipher.length);
let j = 0;