de8e12f896ccb50e5884dbcd13b37e914953a4b9
[com/asn1c.git] / examples / sample.source.PKIX1 / README
1
2 GENERAL INFORMATION
3 ===================
4
5 The X.509 (PKIX1) certificate decoder. Invoking `make` will compile the ASN.1
6 specifications from the rfc3280.txt in the above directory.
7
8 x509dump USAGE
9 ==============
10
11 To use the x509dump, you'll have to prepare an X.509 certificate
12 in DER encoding. The typical X.509 certificate will have a PEM format
13 (DER encoded data wrapped in base64, wrapped in PEM "BEGIN" and "END" sections).
14 The openssl x509 utility may be used to convert between PEM and DER.
15
16         EXAMPLE: Convert 'certificate.pem' into 'certificate.der':
17
18         openssl x509 -inform PEM -in certificate.pem    \
19                         -outform DER -out certificate.der
20
21 After convertsion, the x509dump utility may be used to dump the contents
22 of the DER-encoded X.509 certificate:
23
24         ./x509dump certificate.der      # Print as XML (BASIC-XER)
25
26 The full list of recognized command line options may be obtained with
27
28         > ./x509dump -h
29