31

有没有办法如何在 Linux 中的 cer/pem/crt/der/pfx/p12 之间转换证书?我在 .cer 文件中有一个 SSL 证书,我需要它是 .pem 才能使用它。

我怎样才能转换它?

4

2 回答 2

66

可以在 Linux 中通过终端使用OpenSSL工具在 cer/pem/crt/der/pfx/p12 之间转换证书。

这些命令允许您将证书和密钥转换为不同的格式,以使其与特定类型的服务器或软件兼容。

将 DER 文件 (.crt .cer .der) 转换为 PEM

openssl x509 -inform der -in certificate.cer -out certificate.pem

将 PEM 文件转换为 DER

openssl x509 -outform der -in certificate.pem -out certificate.der

将包含私钥和证书的 PKCS#12 文件 (.pfx .p12) 转换为 PEM

openssl pkcs12 -in keyStore.pfx -out keyStore.pem -nodes

您可以添加 -nocerts 以仅输出私钥或添加 -nokeys 以仅输出证书。

将 PEM 证书文件和私钥转换为 PKCS#12 (.pfx .p12)

openssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt -certfile CACert.crt

有关更多信息,请参阅:

http://www.sslshopper.com/article-most-common-openssl-commands.html

https://support.ssl.com/index.php?/Knowledgebase/Article/View/19

于 2013-05-16T09:15:03.860 回答
2

将 .crt 转换为 .p12

openssl pkcs12 -export -out server.p12 -inkey server.key -in server.crt

其中 server.key 是服务器密钥。server.crt 是来自 CA 的证书文件或自我叹息

于 2017-05-18T15:13:40.863 回答