2018-05-09 20:18:33 +01:00
|
|
|
/**
|
|
|
|
* Cipher functions.
|
|
|
|
*
|
|
|
|
* @author Matt C [matt@artemisbot.uk]
|
|
|
|
* @copyright Crown Copyright 2018
|
|
|
|
* @license Apache-2.0
|
|
|
|
*
|
|
|
|
*/
|
2018-05-11 16:32:19 +01:00
|
|
|
import OperationError from "../errors/OperationError";
|
2018-05-09 20:18:33 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Affine Cipher Encode operation.
|
|
|
|
*
|
|
|
|
* @author Matt C [matt@artemisbot.uk]
|
|
|
|
* @param {string} input
|
|
|
|
* @param {Object[]} args
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
export function affineEncode(input, args) {
|
|
|
|
const alphabet = "abcdefghijklmnopqrstuvwxyz",
|
|
|
|
a = args[0],
|
|
|
|
b = args[1];
|
|
|
|
let output = "";
|
|
|
|
|
|
|
|
if (!/^\+?(0|[1-9]\d*)$/.test(a) || !/^\+?(0|[1-9]\d*)$/.test(b)) {
|
2018-05-11 16:32:19 +01:00
|
|
|
throw new OperationError("The values of a and b can only be integers.");
|
2018-05-09 20:18:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < input.length; i++) {
|
|
|
|
if (alphabet.indexOf(input[i]) >= 0) {
|
|
|
|
// Uses the affine function ax+b % m = y (where m is length of the alphabet)
|
|
|
|
output += alphabet[((a * alphabet.indexOf(input[i])) + b) % 26];
|
|
|
|
} else if (alphabet.indexOf(input[i].toLowerCase()) >= 0) {
|
|
|
|
// Same as above, accounting for uppercase
|
|
|
|
output += alphabet[((a * alphabet.indexOf(input[i].toLowerCase())) + b) % 26].toUpperCase();
|
|
|
|
} else {
|
|
|
|
// Non-alphabetic characters
|
|
|
|
output += input[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return output;
|
|
|
|
}
|
2018-05-09 20:28:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates a polybius square for the given keyword
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @author Matt C [matt@artemisbot.uk]
|
|
|
|
* @param {string} keyword - Must be upper case
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
export function genPolybiusSquare (keyword) {
|
|
|
|
const alpha = "ABCDEFGHIKLMNOPQRSTUVWXYZ",
|
|
|
|
polArray = `${keyword}${alpha}`.split("").unique(),
|
|
|
|
polybius = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < 5; i++) {
|
|
|
|
polybius[i] = polArray.slice(i*5, i*5 + 5);
|
|
|
|
}
|
|
|
|
|
|
|
|
return polybius;
|
|
|
|
}
|