I have the
following.
key.pem - private
key created with openssl.
req.pem - CSR
created with openssl.
cert.cer - Signed
cert returne from Verisign after sending them req.pem.
I need to find out
what openssl commands to use to package this all up in a PKCS#12 file that my
server requires. Anyone know the specific steps.
I've tried the
following, but I get the below error.
openssl pkcs12
-export -in key.pem -certfile cert.cer -out server.p12 -name "Prod Forte
Certificate"
I've also tried
copying the certificate text in the e-mail that came back from Verisign and
placing that in a file with a .pem extension. Same
result.
Error loading
certificates from input
20906:error:0906D06C:PEM routines:PEM_read_bio:no start line:pem_lib.c:662:Expec
ting: CERTIFICATE
20906:error:0906D06C:PEM routines:PEM_read_bio:no start line:pem_lib.c:662:Expec
ting: CERTIFICATE
Thoughts?