How can I package my certificate and its corresponding private key into a PKCS #12 file?
You will receive your certificate from IMS in DER format. You must convert it to PEM format. $openssl x509 -inform DER -in download.cer -outform PEM -out download.pem Then you can package your certificate to a PKCS #12 file using the below OpenSSL command: openssl pkcs12 -export –inkey key.pem -in download.pem -out myserver.p12 -name “my test cert” Where: download.cer is: The certificate you received from IMS key.pem: The key you created when you made your CSR request myserver.
Related Questions
- How is private key handled when an external PKCS #11 module is loaded? Is it picked up from the token when securing, or does NSS expect it to be added in its private key database to use it?
- How can I package my certificate and its corresponding private key into a PKCS #12 file?
- How do I install a certificate and private key (pfx file) into a Netscape 6.1 browser?