请稍候...
  • 通配符证书Wildcard SSL,部署全网HTTPS必备
  • 为什么使用企业型SSL证书?
  • 增强型证书EV SSL,完美支持地址栏显示中文企业名称
  • HTTPS今天你用了吗?
  • 多域名SANS/UCC SSL证书,全面支持Exchange Server 2..
  • 选择SSL证书产品遇到问题?

Openssl转换证书格式常用命令Openssl convert certificates formats commond

点击数:136122013-05-28 12:29:55 来源: 中国数字证书(CHINASSL)

1. 转换PEM 证书

PEM to DER
openssl x509 -outform der -in certificate.pem -out certificate.der
PEM to P7B
openssl crl2pkcs7 -nocrl -certfile certificate.cer -out certificate.p7b -certfile CACert.cer
PEM to PFX
openssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt -certfile CACert.crt

2. 转换P7B 证书

P7B to PEMopenssl pkcs7 -print_certs -in certificate.p7b -out certificate.cer
P7B to PFX
openssl pkcs7 -print_certs -in certificate.p7b -out certificate.cer openssl pkcs12 -export -in certificate.cer -inkey privateKey.key -out certificate.pfx -certfile CACert.cer

3. 转换PFX 证书

PFX to PEM
openssl pkcs12 -in certificate.pfx -out certificate.cer -nodes konwersja poprze OpenSSL

4. 转换DER 证书

DER to PEM
openssl x509 -inform der -in certificate.cer -out certificate.pem

上一页1下一页