mirror of
https://github.com/gchq/CyberChef
synced 2025-12-20 18:23:47 +00:00
Misc Fixes
- Built prod version - added missing semicolons
This commit is contained in:
@@ -422,7 +422,7 @@ var Cipher = {
|
||||
output += alphabet[(keyIndex + msgIndex) % 26].toUpperCase();
|
||||
} else {
|
||||
output += input[i];
|
||||
fail++
|
||||
fail++;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
@@ -469,7 +469,7 @@ var Cipher = {
|
||||
output += alphabet[(msgIndex + alphabet.length - keyIndex) % 26].toUpperCase();
|
||||
} else {
|
||||
output += input[i];
|
||||
fail++
|
||||
fail++;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user