SSL证书格式转换
Posted 我的紫霞辣辣
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SSL证书格式转换相关的知识,希望对你有一定的参考价值。
openssl命令将cer格式转换crt
如下两种方式进行尝试转换
openssl x509 -inform DER -in certificate.cer -out certificate.crt
openssl x509 -inform PEM -in certificate.cer -out certificate.crt
openssl命令将pfx格式转换key
openssl pkcs12 -in certificate.pfx -nocerts -nodes -out certificate.key
以上是关于SSL证书格式转换的主要内容,如果未能解决你的问题,请参考以下文章
[转]Apache的CRT格式SSL证书转换成IIS用的PFX格式