mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 17:08:31 +01:00
58 lines
1.4 KiB
JavaScript
58 lines
1.4 KiB
JavaScript
/**
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
* @copyright Crown Copyright 2016
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
import Operation from "../Operation.mjs";
|
|
import cptable from "codepage";
|
|
import {IO_FORMAT} from "../lib/ChrEnc.mjs";
|
|
|
|
/**
|
|
* Encode text operation
|
|
*/
|
|
class EncodeText extends Operation {
|
|
|
|
/**
|
|
* EncodeText constructor
|
|
*/
|
|
constructor() {
|
|
super();
|
|
|
|
this.name = "Encode text";
|
|
this.module = "Encodings";
|
|
this.description = [
|
|
"Encodes text into the chosen character encoding.",
|
|
"<br><br>",
|
|
"Supported charsets are:",
|
|
"<ul>",
|
|
Object.keys(IO_FORMAT).map(e => `<li>${e}</li>`).join("\n"),
|
|
"</ul>",
|
|
].join("\n");
|
|
this.infoURL = "https://wikipedia.org/wiki/Character_encoding";
|
|
this.inputType = "string";
|
|
this.outputType = "ArrayBuffer";
|
|
this.args = [
|
|
{
|
|
"name": "Encoding",
|
|
"type": "option",
|
|
"value": Object.keys(IO_FORMAT)
|
|
}
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param {string} input
|
|
* @param {Object[]} args
|
|
* @returns {ArrayBuffer}
|
|
*/
|
|
run(input, args) {
|
|
const format = IO_FORMAT[args[0]];
|
|
const encoded = cptable.utils.encode(format, input);
|
|
return new Uint8Array(encoded).buffer;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
export default EncodeText;
|