pkcs7.1 revision 279265
Automatically generated by Pod::Man 2.27 (Pod::Simple 3.28)

Standard preamble:
========================================================================
..
..
.. Set up some character translations and predefined strings. \*(-- will
give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
double quote, and \*(R" will give a right double quote. \*(C+ will
give a nicer C++. Capital omega is used to do unbreakable dashes and
therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
nothing in troff, for use with C<>.
.tr \(*W- . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\}
Escape single quotes in literal strings from groff's Unicode transform.

If the F register is turned on, we'll generate index entries on stderr for
titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
entries marked with X<> in POD. Of course, you'll have to process the
output yourself in some meaningful fashion.

Avoid warning from groff about undefined register 'F'.
.. .nr rF 0 . if \nF \{ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{ . nr % 0 . nr F 2 . \} . \} .\} .rr rF
Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
Fear. Run. Save yourself. No user-serviceable parts.
. \" fudge factors for nroff and troff . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] .\} . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents . \" corrections for vroff . \" for low resolution devices (crt and lpr) \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} ========================================================================

Title "PKCS7 1"
PKCS7 1 "2015-01-08" "0.9.8zd" "OpenSSL"
For nroff, turn off justification. Always turn off hyphenation; it makes
way too many mistakes in technical documents.
"NAME"
pkcs7 - PKCS#7 utility
"SYNOPSIS"
Header "SYNOPSIS" \fBopenssl pkcs7 [-inform PEM|DER] [-outform PEM|DER] [-in filename] [-out filename] [-print_certs] [-text] [-noout] [-engine id]
"DESCRIPTION"
Header "DESCRIPTION" The pkcs7 command processes PKCS#7 files in \s-1DER\s0 or \s-1PEM\s0 format.
"COMMAND OPTIONS"
Header "COMMAND OPTIONS"
"-inform DER|PEM" 4
Item "-inform DER|PEM" This specifies the input format. \s-1DER\s0 format is \s-1DER\s0 encoded PKCS#7 v1.5 structure.\s-1PEM\s0 (the default) is a base64 encoded version of the \s-1DER\s0 form with header and footer lines.
"-outform DER|PEM" 4
Item "-outform DER|PEM" This specifies the output format, the options have the same meaning as the \fB-inform option.
"-in filename" 4
Item "-in filename" This specifies the input filename to read from or standard input if this option is not specified.
"-out filename" 4
Item "-out filename" specifies the output filename to write to or standard output by default.
"-print_certs" 4
Item "-print_certs" prints out any certificates or CRLs contained in the file. They are preceded by their subject and issuer names in one line format.
"-text" 4
Item "-text" prints out certificates details in full rather than just subject and issuer names.
"-noout" 4
Item "-noout" don't output the encoded version of the PKCS#7 structure (or certificates is -print_certs is set).
"-engine id" 4
Item "-engine id" specifying an engine (by it's unique id string) will cause req to attempt to obtain a functional reference to the specified engine, thus initialising it if needed. The engine will then be set as the default for all available algorithms.
"EXAMPLES"
Header "EXAMPLES" Convert a PKCS#7 file from \s-1PEM\s0 to \s-1DER:\s0

.Vb 1 openssl pkcs7 -in file.pem -outform DER -out file.der .Ve

Output all certificates in a file:

.Vb 1 openssl pkcs7 -in file.pem -print_certs -out certs.pem .Ve

"NOTES"
Header "NOTES" The \s-1PEM\s0 PKCS#7 format uses the header and footer lines:

.Vb 2 -----BEGIN PKCS7----- -----END PKCS7----- .Ve

For compatibility with some CAs it will also accept:

.Vb 2 -----BEGIN CERTIFICATE----- -----END CERTIFICATE----- .Ve

"RESTRICTIONS"
Header "RESTRICTIONS" There is no option to print out all the fields of a PKCS#7 file.

This PKCS#7 routines only understand PKCS#7 v 1.5 as specified in \s-1RFC2315\s0 they cannot currently parse, for example, the new \s-1CMS\s0 as described in \s-1RFC2630.\s0

"SEE ALSO"
Header "SEE ALSO" \fIcrl2pkcs7\|(1)