数字证书格式转换:.key和.crt转换成.pem格式
.key 转换成 .pem:
openssl rsa -in temp.key -out temp.pem
.crt 转换成 .pem:
openssl x509 -in tmp.crt -out tmp.pem
正文到此结束
openssl rsa -in temp.key -out temp.pem
openssl x509 -in tmp.crt -out tmp.pem