数字证书格式转换:.key和.crt转换成.pem格式

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/jingzi123456789/article/details/84862684

.key 转换成 .pem

openssl rsa -in temp.key -out temp.pem

.crt 转换成 .pem

openssl x509 -in tmp.crt -out tmp.pem

猜你喜欢

转载自blog.csdn.net/jingzi123456789/article/details/84862684