mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 08:58:30 +01:00
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
/**
|
|
* @author dolphinOnKeys [robin@weird.io]
|
|
* @copyright Crown Copyright 2022
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
import Operation from "../Operation.mjs";
|
|
import {toBinary} from "../lib/Binary.mjs";
|
|
|
|
/**
|
|
* Cetacean Cipher Encode operation
|
|
*/
|
|
class CetaceanCipherEncode extends Operation {
|
|
|
|
/**
|
|
* CetaceanCipherEncode constructor
|
|
*/
|
|
constructor() {
|
|
super();
|
|
|
|
this.name = "Cetacean Cipher Encode";
|
|
this.module = "Ciphers";
|
|
this.description = "Converts any input into Cetacean Cipher. <br/><br/>e.g. <code>hi</code> becomes <code>EEEEEEEEEeeEeEEEEEEEEEEEEeeEeEEe</code>";
|
|
this.infoURL = "https://hitchhikers.fandom.com/wiki/Dolphins";
|
|
this.inputType = "string";
|
|
this.outputType = "string";
|
|
}
|
|
|
|
/**
|
|
* @param {string} input
|
|
* @param {Object[]} args
|
|
* @returns {string}
|
|
*/
|
|
run(input, args) {
|
|
const result = [];
|
|
const charArray = input.split("");
|
|
|
|
charArray.map(character => {
|
|
if (character === " ") {
|
|
result.push(character);
|
|
} else {
|
|
const binaryArray = toBinary(character.charCodeAt(0), "None", 16).split("");
|
|
result.push(binaryArray.map(str => str === "1" ? "e" : "E").join(""));
|
|
}
|
|
});
|
|
|
|
return result.join("");
|
|
}
|
|
}
|
|
|
|
export default CetaceanCipherEncode;
|