https证书pfx 生成 pem,crt,key
作者:本站编辑
发布时间:2019-04-03
来源:佚名
点击数:
(1)将.pfx格式的证书转换为.pem文件格式:
openssl pkcs12 -in xxx.pfx -nodes -out server.pem
(2)从.pem文件中导出私钥server.key:
openssl rsa -in server.pem -out server.key
(3)从.pem文件中导出证书server.crt
openssl x509 -in server.pem -out server.crt
比如360网站cdn里面支持上传crt格式和key格式证书文件,而腾讯云支持的是pem格式哦ssl证书和key私钥文件内容上传。这就是很多朋友需要自行转换自己的ssl证书格式才行。
ssl证书
最为常见的是iis主机使用的pfx格式证书和nginx使用的crt格式需要转换。如果你不会使用linux下的命令语句,那就需要此工具了。
ssl证书转换
如上图,可以自行选择上传证书,选择输出证书格式,就可以转换了。
工具地址:https://www.sslshopper.com/ssl-converter.html
附一些转换命令:
openssl pkcs12 -in a.pfx -nodes -out server.pem
x509 -outform der -in your-cert.pem -out your-cert.crt
openssl rsa -in server.pem -out server.key