mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
Converted Vignere, added more tests and cleaned stuff up
This commit is contained in:
parent
789ec94eff
commit
6bec68021c
7 changed files with 358 additions and 357 deletions
|
@ -54,7 +54,7 @@ class AffineCipherDecode extends Operation {
|
|||
}
|
||||
|
||||
if (Utils.gcd(a, 26) !== 1) {
|
||||
return "The value of a must be coprime to 26.";
|
||||
return "The value of `a` must be coprime to 26.";
|
||||
}
|
||||
|
||||
for (let i = 0; i < input.length; i++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue