DER encoded certificate
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |formattype=electronic |subcat=Security |extensions={{ext|der}}, {{ext|crt}}, {{ext|cer}} |mimetypes={{mimetype|application/x-x509-user-cert}}, {{mimetype|applica...") |
|||
Line 18: | Line 18: | ||
== Software == | == Software == | ||
* [http://www.openssl.org/ OpenSSL] | * [http://www.openssl.org/ OpenSSL] | ||
+ | |||
+ | == Sample files == | ||
+ | * [http://apps.cybersource.com/library/downloads/CyberSource_SJC_US.crt CyberSource certificate] | ||
+ | |||
+ | == Links == | ||
+ | * [http://www.cybersource.com/developers/test_and_manage/managing/update_keys_and_certificates/ Info on certificate files at CyberSource site] |
Revision as of 21:59, 17 October 2013
DER encoded certificate is a file format for storing an X.509 certificate.
It is one type of DER file. DER is a subset of BER format. BER is a serialization format for the abstract ASN.1 format.
Contents |
Examples
To display the contents of a DER encoded certificate using OpenSSL:
openssl x509 -noout -text -inform der -in example.der
To convert from DER encoded certificate format to PEM encoded certificate format:
openssl x509 -in example.der -inform der -outform pem -out example.pem