To convert a pem file containing a x509 certificate + private key into a pkcs12 (.p12) file, the following command is being used:
openssl pkcs12 -export -inkey cert_pkey.pem -in cert_pkey.pem -out cert.p12
I am trying to accomplish the same programatically using Java with BouncyCastle library. I am able to extract the X509Cert from the PEMObject but the Private key has been confusing.
Any help in piecing together the steps is appreciated:
- Open cert_pkey.pem file stream using PEMParser
- Get the X509 Certificate from PemObject (done)
- Get the private key from the PemObject (how?)
- Create KeyStore of instance type PKCS12 with password
Finally got around how to get the cert and key separately - not sure why it worked out the way it worked out:
I got the hint when I looked up the
.getType()
onpermCertObj
andpermKeyObj
and gotRSA CERT
andRSA PRIVATE KEY
respectively returned.Couldn't figure out the difference between
readObject()
andreadPemObject()