mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 08:58:30 +01:00
85 lines
2.3 KiB
JavaScript
85 lines
2.3 KiB
JavaScript
/**
|
||
* @author n1474335 [n1474335@gmail.com]
|
||
* @copyright Crown Copyright 2016
|
||
* @license Apache-2.0
|
||
*/
|
||
|
||
import Operation from "../Operation.mjs";
|
||
import Utils from "../Utils.mjs";
|
||
import { DELIM_OPTIONS } from "../lib/Delim.mjs";
|
||
import { isWorkerEnvironment } from "../Utils.mjs";
|
||
import OperationError from "../errors/OperationError.mjs";
|
||
|
||
/**
|
||
* From Charcode operation
|
||
*/
|
||
class FromCharcode extends Operation {
|
||
|
||
/**
|
||
* FromCharcode constructor
|
||
*/
|
||
constructor() {
|
||
super();
|
||
|
||
this.name = "From Charcode";
|
||
this.module = "Default";
|
||
this.description = "Converts unicode character codes back into text.<br><br>e.g. <code>0393 03b5 03b9 03ac 20 03c3 03bf 03c5</code> becomes <code>Γειά σου</code>";
|
||
this.infoURL = "https://wikipedia.org/wiki/Plane_(Unicode)";
|
||
this.inputType = "string";
|
||
this.outputType = "ArrayBuffer";
|
||
this.args = [
|
||
{
|
||
"name": "Delimiter",
|
||
"type": "option",
|
||
"value": DELIM_OPTIONS
|
||
},
|
||
{
|
||
"name": "Base",
|
||
"type": "number",
|
||
"value": 16
|
||
}
|
||
];
|
||
}
|
||
|
||
/**
|
||
* @param {string} input
|
||
* @param {Object[]} args
|
||
* @returns {ArrayBuffer}
|
||
*
|
||
* @throws {OperationError} if base out of range
|
||
*/
|
||
run(input, args) {
|
||
const delim = Utils.charRep(args[0] || "Space"),
|
||
base = args[1];
|
||
let bites = input.split(delim),
|
||
i = 0;
|
||
|
||
if (base < 2 || base > 36) {
|
||
throw new OperationError("Error: Base argument must be between 2 and 36");
|
||
}
|
||
|
||
if (input.length === 0) {
|
||
return new ArrayBuffer;
|
||
}
|
||
|
||
if (base !== 16 && isWorkerEnvironment()) self.setOption("attemptHighlight", false);
|
||
|
||
// Split into groups of 2 if the whole string is concatenated and
|
||
// too long to be a single character
|
||
if (bites.length === 1 && input.length > 17) {
|
||
bites = [];
|
||
for (i = 0; i < input.length; i += 2) {
|
||
bites.push(input.slice(i, i+2));
|
||
}
|
||
}
|
||
|
||
let latin1 = "";
|
||
for (i = 0; i < bites.length; i++) {
|
||
latin1 += Utils.chr(parseInt(bites[i], base));
|
||
}
|
||
return Utils.strToArrayBuffer(latin1);
|
||
}
|
||
|
||
}
|
||
|
||
export default FromCharcode;
|