markdown 将PFX转换为SSL公钥/私钥

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 将PFX转换为SSL公钥/私钥相关的知识,希望对你有一定的参考价值。

We’ll start by extracting the CRT file using openssl with the following command

`openssl pkcs12 -in ./YOUR-PFX-FILE.pfx -clcerts -nokeys -out domain.crt`

Followed by extracting the private key with the following command

`openssl pkcs12 -in ./YOUR-PFX-FILE.pfx -nocerts -nodes -out domain.rsa`

https://blog.knoldus.com/easiest-way-to-setup-ssl-on-nginx-using-pfx-files/

以上是关于markdown 将PFX转换为SSL公钥/私钥的主要内容,如果未能解决你的问题,请参考以下文章