mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-24 16:56:15 -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 {
|
||||
|
|
|
@ -1,21 +1,21 @@
|
|||
203 source files
|
||||
104218 lines
|
||||
4.0M size
|
||||
104345 lines
|
||||
size
|
||||
|
||||
136 JavaScript source files
|
||||
95128 lines
|
||||
3.4M size
|
||||
95255 lines
|
||||
3.5M size
|
||||
|
||||
78 third party JavaScript source files
|
||||
76377 lines
|
||||
2.7M size
|
||||
2.8M size
|
||||
|
||||
58 first party JavaScript source files
|
||||
18751 lines
|
||||
724K size
|
||||
18878 lines
|
||||
740K size
|
||||
|
||||
3.1M uncompressed JavaScript size
|
||||
3.2M uncompressed JavaScript size
|
||||
1.7M compressed JavaScript size
|
||||
|
||||
15 categories
|
||||
152 operations
|
||||
154 operations
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue