OpenSSL Convert .p7b to .pem to .crt: Difference between revisions

From UNIX Systems Administration
Jump to navigation Jump to search
Line 1: Line 1:
== Convert .p7b with DER encording to .pem with PEM (PKCS7) encoding ==
== Convert .p7b with DER encording to .pem with PEM (PKCS7) encoding ==
# Conversion from .p7b with DER encoding to PEM encoding
# Conversion from .p7b with DER encoding to PEM encoding
## <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-----
# Verify the encoding, the following is viewable in the file -----BEGIN PKCS7----- to -----END PKCS7-----
## <tt>'''# openssl pkcs7 -inform der -in <certificate>.p7b -outform pem -out <certificate>.pem'''</tt>


== Convert .pem with PEM encoding to .crt ==
== Convert .pem with PEM encoding to .crt ==

Revision as of 15:29, 8 January 2016

Convert .p7b with DER encording to .pem with PEM (PKCS7) encoding

  1. Conversion from .p7b with DER encoding to PEM encoding
    1. # openssl pkcs7 -inform der -in <certificate>.p7b -outform pem -out <certificate>.pem
  2. Verify the encoding, the following is viewable in the file -----BEGIN PKCS7----- to -----END PKCS7-----

Convert .pem with PEM encoding to .crt

  1. Conversion from .pem with no encoding to .crt.
    1. # openssl pkcs7 -print_certs -in <certificate>.pem -out <certificate>.crt

Further Reading

  1. OpenSSL: unable to load PKCS7 object
  2. SSL Converter