mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 17:08:31 +01:00
83 lines
2.2 KiB
JavaScript
83 lines
2.2 KiB
JavaScript
|
/**
|
||
|
* @author gchq77703 []
|
||
|
* @copyright Crown Copyright 2018
|
||
|
` * @license Apache-2.0
|
||
|
*/
|
||
|
|
||
|
import Operation from "../Operation";
|
||
|
import forge from "node-forge/dist/forge.min.js";
|
||
|
|
||
|
/**
|
||
|
* Generate RSA Key Pair operation
|
||
|
*/
|
||
|
class GenerateRSAKeyPair extends Operation {
|
||
|
|
||
|
/**
|
||
|
* GenerateRSAKeyPair constructor
|
||
|
*/
|
||
|
constructor() {
|
||
|
super();
|
||
|
|
||
|
this.name = "Generate RSA Key Pair";
|
||
|
this.module = "Ciphers";
|
||
|
this.description = "Generate an RSA key pair with a given number of bits";
|
||
|
this.infoURL = "https://wikipedia.org/wiki/RSA_(cryptosystem)";
|
||
|
this.inputType = "string";
|
||
|
this.outputType = "string";
|
||
|
this.args = [
|
||
|
{
|
||
|
name: "RSA Key Length",
|
||
|
type: "option",
|
||
|
value: [
|
||
|
"1024",
|
||
|
"2048",
|
||
|
"4096"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
name: "Output Format",
|
||
|
type: "option",
|
||
|
value: [
|
||
|
"PEM",
|
||
|
"JSON",
|
||
|
"DER"
|
||
|
]
|
||
|
}
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param {string} input
|
||
|
* @param {Object[]} args
|
||
|
* @returns {string}
|
||
|
*/
|
||
|
async run(input, args) {
|
||
|
const [keyLength, outputFormat] = args
|
||
|
|
||
|
return new Promise((resolve, reject) => {
|
||
|
forge.pki.rsa.generateKeyPair({ bits: Number(keyLength), workers: 2 }, (err, keypair) => {
|
||
|
if (err) return reject(err)
|
||
|
|
||
|
let result;
|
||
|
|
||
|
switch(outputFormat) {
|
||
|
case "PEM":
|
||
|
result = forge.pki.publicKeyToPem(keypair.publicKey) + "\n" + forge.pki.privateKeyToPem(keypair.privateKey);
|
||
|
break;
|
||
|
case "JSON":
|
||
|
result = JSON.stringify(keypair);
|
||
|
break;
|
||
|
case "DER":
|
||
|
result = forge.asn1.toDer(forge.pki.privateKeyToAsn1(keypair.privateKey)).getBytes();
|
||
|
break;
|
||
|
};
|
||
|
|
||
|
resolve(result);
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
export default GenerateRSAKeyPair;
|