如果您从 CA 获得 Web 服务器不支持的SSL证书文件,则可以使用 OpenSSL 命令将SSL证书文件转换为 Web 服务器或托管提供商所需的格式。
要了解所有命令,请应用该命令。help
Openssl> help
若要获取有关特定命令的帮助,请在命令之后使用。-help
Openssl> pkcs12 -help
以下是转换证书文件格式的主要命令。
将 PEM 转换为 CER 格式
openssl> x509 -outform cer -in certificate.pem -out certificate.cer
将 PEM 转换为 P7B 格式
openssl> crl2pkcs7 -nocrl -certfile certificate.cer -out certificate.p7b -certfile CACert.cer
将 PEM 转换为 PFX 格式
openssl> pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt -certfile CACert.crt
将 CER 转换为 PEM 格式
openssl> x509 -inform cer -in certificate.cer -out certificate.pem
将 P7B 转换为 PEM 格式
openssl> pkcs7 -print_certs -in certificate.p7b -out certificate.cer
将 P7B 转换为 PFX 格式
openssl> pkcs7 -print_certs -in certificate.p7b -out certificate.cer openssl> pkcs12 -export -in certificate.cer -inkey privateKey.key -out certificate.pfx -certfile CACert.cer
将 PFX 转换为 PEM 格式
openssl> pkcs12 -in certificate.pfx -out certificate.cer -nodes