mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 00:48:31 +01:00
58 lines
1.6 KiB
JavaScript
58 lines
1.6 KiB
JavaScript
/**
|
|
* @author tcode2k16 [tcode2k16@gmail.com]
|
|
* @copyright Crown Copyright 2018
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
import Operation from "../Operation";
|
|
import BigNumber from "bignumber.js";
|
|
import Utils from "../Utils";
|
|
|
|
|
|
/**
|
|
* From Base62 operation
|
|
*/
|
|
class FromBase62 extends Operation {
|
|
|
|
/**
|
|
* FromBase62 constructor
|
|
*/
|
|
constructor() {
|
|
super();
|
|
|
|
this.name = "From Base62";
|
|
this.module = "Default";
|
|
this.description = "Base62 is a notation for encoding arbitrary byte data using a restricted set of symbols that can be conveniently used by humans and processed by computers. The high number base results in shorter strings than with the decimal or hexadecimal system.";
|
|
this.infoURL = "https://wikipedia.org/wiki/List_of_numeral_systems";
|
|
this.inputType = "string";
|
|
this.outputType = "byteArray";
|
|
this.args = [
|
|
{
|
|
name: "Alphabet",
|
|
type: "string",
|
|
value: "0-9A-Za-z"
|
|
}
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param {string} input
|
|
* @param {Object[]} args
|
|
* @returns {byteArray}
|
|
*/
|
|
run(input, args) {
|
|
if (input.length < 1) return [];
|
|
const ALPHABET = Utils.expandAlphRange(args[0]).join("");
|
|
const BN = BigNumber.clone({ ALPHABET });
|
|
|
|
const re = new RegExp("[^" + ALPHABET.replace(/[[\]\\\-^$]/g, "\\$&") + "]", "g");
|
|
input = input.replace(re, "");
|
|
|
|
const number = new BN(input, 62);
|
|
|
|
return Utils.convertToByteArray(number.toString(16), "Hex");
|
|
}
|
|
|
|
}
|
|
|
|
export default FromBase62;
|