21 The B<pkcs7> command processes PKCS#7 files in DER or PEM format.
23 =head1 COMMAND OPTIONS
27 =item B<-inform DER|PEM>
29 This specifies the input format. B<DER> format is DER encoded PKCS#7
30 v1.5 structure.B<PEM> (the default) is a base64 encoded version of
31 the DER form with header and footer lines.
33 =item B<-outform DER|PEM>
35 This specifies the output format, the options have the same meaning as the
40 This specifies the input filename to read from or standard input if this
41 option is not specified.
43 =item B<-out filename>
45 specifies the output filename to write to or standard output by
50 prints out any certificates or CRLs contained in the file. They are
51 preceded by their subject and issuer names in one line format.
55 prints out certificates details in full rather than just subject and
60 don't output the encoded version of the PKCS#7 structure (or certificates
61 is B<-print_certs> is set).
65 specifying an engine (by its unique B<id> string) will cause B<pkcs7>
66 to attempt to obtain a functional reference to the specified engine,
67 thus initialising it if needed. The engine will then be set as the default
68 for all available algorithms.
74 Convert a PKCS#7 file from PEM to DER:
76 openssl pkcs7 -in file.pem -outform DER -out file.der
78 Output all certificates in a file:
80 openssl pkcs7 -in file.pem -print_certs -out certs.pem
84 The PEM PKCS#7 format uses the header and footer lines:
89 For compatibility with some CAs it will also accept:
91 -----BEGIN CERTIFICATE-----
92 -----END CERTIFICATE-----
96 There is no option to print out all the fields of a PKCS#7 file.
98 This PKCS#7 routines only understand PKCS#7 v 1.5 as specified in RFC2315 they
99 cannot currently parse, for example, the new CMS as described in RFC2630.
103 L<crl2pkcs7(1)|crl2pkcs7(1)>