mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
Merge branch 'master' of https://github.com/maqifrnswa/CyberChef into maqifrnswa-master
This commit is contained in:
commit
1baea1da3d
1 changed files with 1 additions and 8 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue