I've bought a new wildcard certificate and got a zip file which contains the follow files:
star.domain.com.crt
star.domain.com.ca-bundle
star.domain.com.p7b
The service provider which requires the certificates wants that I'll send him the new certificate in the following formats:
Private key
Public key (CSR)
Intermediate certificate
I'm not sure how to generate these files from the ones I got from the SSL provider.
I've ran some openssl commands to try and generate the required files but I'm not sure that the generated files qualify for the service where I need to send the certificates.
Edit: I've ran the following command to create the .pem file:
openssl pkcs7 -in star.domain.com.p7b -text -out star.domain.com.pem -print_certs
Is that the right way to create the pem?
Anyone care to assist me with this please?