markdown 将pfx SSL证书转换为cert / primary密钥
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 将pfx SSL证书转换为cert / primary密钥相关的知识,希望对你有一定的参考价值。
Requires the passcode for the .pfx file prior.
Extract .key file from .pfx file (will need to set a password here too):
```sh
openssl pkcs12 -in [yourfile.pfx] -nocerts -out [keyfile-encrypted.key]
```
Extract .crt file from .pfx file:
```sh
openssl pkcs12 -in [yourfile.pfx] -clcerts -nokeys -out [certificate.crt]
```
Extract pem formatted .key from previous .key:
```
openssl rsa -in [keyfile-encrypted.key] -outform PEM -out [keyfile-encrypted-pem.key]
```
Source:
- https://www.markbrilman.nl/2011/08/howto-convert-a-pfx-to-a-seperate-key-crt-file/
以上是关于markdown 将pfx SSL证书转换为cert / primary密钥的主要内容,如果未能解决你的问题,请参考以下文章
SSL证书安装... .pfx,.cer和.txt文件?
SSL证书格式转换
SSL证书格式转换
[证书] OPENSSL将PFX证书转换为PEM格式
将 .pfx 转换为 .cer
如何在 Linux 中转换 SSL 证书