Create PKCS12

Job ID: 34660993

Budget: $30 – $250 USD

Create a PKCS12 file using JavaScript from a Web Browser.

Example with OpenSSL:

openssl pkcs8 -inform DER -in "./privateKey.key" -passin pass:secret -out "./privateKey.pem"

openssl x509 -inform DER -in "./certificate.cer" -out "./certificate.pem"

openssl pkcs12 -export -in "./certificate.pem" -inkey "./privateKey.pem" -out "./pkcs12.pem" -passout pass:secret