mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 08:58:30 +01:00
82 lines
2.4 KiB
JavaScript
82 lines
2.4 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 forge from "node-forge";
|
|
import BigNumber from "bignumber.js";
|
|
import { isWorkerEnvironment } from "../Utils.mjs";
|
|
|
|
/**
|
|
* Pseudo-Random Number Generator operation
|
|
*/
|
|
class PseudoRandomNumberGenerator extends Operation {
|
|
|
|
/**
|
|
* PseudoRandomNumberGenerator constructor
|
|
*/
|
|
constructor() {
|
|
super();
|
|
|
|
this.name = "Pseudo-Random Number Generator";
|
|
this.module = "Ciphers";
|
|
this.description = "A cryptographically-secure pseudo-random number generator (PRNG).<br><br>This operation uses the browser's built-in <code>crypto.getRandomValues()</code> method if available. If this cannot be found, it falls back to a Fortuna-based PRNG algorithm.";
|
|
this.infoURL = "https://wikipedia.org/wiki/Pseudorandom_number_generator";
|
|
this.inputType = "string";
|
|
this.outputType = "string";
|
|
this.args = [
|
|
{
|
|
"name": "Number of bytes",
|
|
"type": "number",
|
|
"value": 32
|
|
},
|
|
{
|
|
"name": "Output as",
|
|
"type": "option",
|
|
"value": ["Hex", "Integer", "Byte array", "Raw"]
|
|
}
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param {string} input
|
|
* @param {Object[]} args
|
|
* @returns {string}
|
|
*/
|
|
run(input, args) {
|
|
const [numBytes, outputAs] = args;
|
|
|
|
let bytes;
|
|
|
|
if (isWorkerEnvironment() && self.crypto) {
|
|
bytes = self.crypto.getRandomValues(new Uint8Array(numBytes));
|
|
bytes = Utils.arrayBufferToStr(bytes.buffer);
|
|
} else {
|
|
bytes = forge.random.getBytesSync(numBytes);
|
|
}
|
|
|
|
let value = new BigNumber(0),
|
|
i;
|
|
|
|
switch (outputAs) {
|
|
case "Hex":
|
|
return forge.util.bytesToHex(bytes);
|
|
case "Integer":
|
|
for (i = bytes.length - 1; i >= 0; i--) {
|
|
value = value.times(256).plus(bytes.charCodeAt(i));
|
|
}
|
|
return value.toFixed();
|
|
case "Byte array":
|
|
return JSON.stringify(Utils.strToCharcode(bytes));
|
|
case "Raw":
|
|
default:
|
|
return bytes;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
export default PseudoRandomNumberGenerator;
|