I have a modulus and private exponent. How can I generate an RSA private Key in JavaScript from that?
Or if these values are not enough to generate a RSA private Key. What are the other values that I might possibly need.
RSAPrivateKeySpec in Java 7 is able to generate RSA private key with mod and private Exp. I'm looking for a equivalent in JavaScript.
I also tried npm ursa module which unfortunately didn't work out.