UNPKG

rsa-pem-from-mod-exp

Version:

Create RSA Public Key PEM from Modulus and Exponent value in node.js

2 lines 163 B
/** Convert modulus and exponent from base64 string value into PEM format public key. */ export default function(modulus_b64: string, exponent_b64: string): string