mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-22 07:46:16 -04:00
Misc Fixes
- Built prod version - added missing semicolons
This commit is contained in:
parent
560712cee3
commit
b631feea74
5 changed files with 30 additions and 30 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue