mirror of
https://github.com/gchq/CyberChef
synced 2025-12-05 23:53:27 +00:00
Converted Vignere, added more tests and cleaned stuff up
This commit is contained in:
@@ -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++) {
|
||||
|
||||
Reference in New Issue
Block a user