OpenSSL Convert .p7b to .pem to .crt: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Convert .p7b to .pem == # Conversion from .p7b with DER encoding to .pem. ## <tt>'''# openssl pkcs7 -inform der -in <certificate>.p7b -out <certificate>.pem'''</tt> == Con...") |
|||
(10 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== Convert .p7b to .pem == | == Convert .p7b with DER encording to .pem with PEM (PKCS7) encoding == | ||
# Conversion from .p7b with DER encoding to | # Conversion from .p7b with DER encoding to PEM encoding | ||
## <tt>'''# openssl pkcs7 -inform der -in <certificate>.p7b -out <certificate>.pem'''</tt> | ## <tt>'''# openssl pkcs7 -inform der -in <certificate>.p7b -outform pem -out <certificate>.pem'''</tt> | ||
# Verify the encoding, the following is viewable in the file -----BEGIN PKCS7----- to -----END PKCS7----- | |||
== Convert | == Convert from PKCS7 PEM-formatted to x509 PEM-formatted == | ||
# | # Convert from PKCS7 PEM-formatted to x509 PEM-formatted. | ||
## <tt>'''#openssl pkcs7 -print_certs -in | ## <tt>'''# openssl pkcs7 -print_certs -in <certificate-pem>.p7b -out <certificate-x509>.crt'''</tt> | ||
== Further Reading == | == Further Reading == | ||
# [http://www.experts-exchange.com/Programming/Q_27570065.html] | # [http://www.experts-exchange.com/Programming/Q_27570065.html OpenSSL: unable to load PKCS7 object] | ||
# [https://www.sslshopper.com/ssl-converter.html] | # [https://www.sslshopper.com/ssl-converter.html SSL Converter] | ||
[[Category:Software]] | [[Category:Software]] | ||
[[Category:SSL]] | [[Category:SSL]] |
Latest revision as of 20:19, 8 January 2016
Convert .p7b with DER encording to .pem with PEM (PKCS7) encoding
- Conversion from .p7b with DER encoding to PEM encoding
- # openssl pkcs7 -inform der -in <certificate>.p7b -outform pem -out <certificate>.pem
- Verify the encoding, the following is viewable in the file -----BEGIN PKCS7----- to -----END PKCS7-----
Convert from PKCS7 PEM-formatted to x509 PEM-formatted
- Convert from PKCS7 PEM-formatted to x509 PEM-formatted.
- # openssl pkcs7 -print_certs -in <certificate-pem>.p7b -out <certificate-x509>.crt