linux 第31章 ssl证书互转 linux 第31章 ssl证书互转

2021-06-30

1、pfx 转 pem

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

2、crt 转 pem

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

3、cer 转 pem

openssl x509 -inform der -in test.cer -out test.pem
阅读 1335