hello
i'm searching how to upload a certifcate ?
My provider send me some files ended with
.crt
.csr
.key
.ca-bundle
but don't know wich to use , only have to choose .pem .der .cer
someone a idea??
This thread was automatically locked due to age.
hello
i'm searching how to upload a certifcate ?
My provider send me some files ended with
.crt
.csr
.key
.ca-bundle
but don't know wich to use , only have to choose .pem .der .cer
someone a idea??
Helmut,
you can use a Linux machine to convert crt to pem:
Type the following code into your OpenSSL client:
openssl x509 -in cert.crt -out cert.pem
openssl x509 -in cert.cer -out cert.pem
openssl x509 -in cert.der -out cert.pem
or upload the certificate via Certificates on Windows Machine and then save it/export into PEM format.
Regards
Helmut,
you can use a Linux machine to convert crt to pem:
Type the following code into your OpenSSL client:
openssl x509 -in cert.crt -out cert.pem
openssl x509 -in cert.cer -out cert.pem
openssl x509 -in cert.der -out cert.pem
or upload the certificate via Certificates on Windows Machine and then save it/export into PEM format.
Regards