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

From UNIX Systems Administration
Jump to navigation Jump to search
 
Line 4: Line 4:
# 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-----


== Convert .pem with PEM encoding to .crt ==
== Convert from PKCS7 PEM-formatted to x509 PEM-formatted ==
# Conversion from .pem with no encoding to .crt.
# Convert from PKCS7 PEM-formatted to x509 PEM-formatted.
## <tt>'''# openssl pkcs7 -print_certs -in <certificate>.pem -out <certificate>.crt'''</tt>
## <tt>'''# openssl pkcs7 -print_certs -in <certificate-pem>.p7b -out <certificate-x509>.crt'''</tt>


== Further Reading ==
== Further Reading ==

Latest revision as of 20:19, 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 from PKCS7 PEM-formatted to x509 PEM-formatted

  1. Convert from PKCS7 PEM-formatted to x509 PEM-formatted.
    1. # openssl pkcs7 -print_certs -in <certificate-pem>.p7b -out <certificate-x509>.crt

Further Reading

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