Add PKCS#8 utility functions and add PBE options.
[openssl.git] / doc / man / crl2pkcs7.pod
1 =pod
2
3 =head1 NAME
4
5 crl2pkcs7 - Create a PKCS#7 structure from a CRL and certificates.
6
7 =head1 SYNOPSIS
8
9 B<openssl> B<pkcs7>
10 [B<-inform PEM|DER>]
11 [B<-outform PEM|DER>]
12 [B<-in filename>]
13 [B<-out filename>]
14 [B<-print_certs>]
15
16 =head1 DESCRIPTION
17
18 The B<crl2pkcs7> command takes an optional CRL and one or more
19 certificates and converts them into a PKCS#7 degenerate "certificates
20 only" structure.
21
22 =head1 COMMAND OPTIONS
23
24 =over 4
25
26 =item B<-inform DER|PEM>
27
28 This specifies the CRL input format. B<DER> format is DER encoded CRL
29 structure.B<PEM> (the default) is a base64 encoded version of
30 the DER form with header and footer lines.
31
32 =item B<-outform DER|PEM>
33
34 This specifies the PKCS#7 structure output format. B<DER> format is DER
35 encoded PKCS#7 structure.B<PEM> (the default) is a base64 encoded version of
36 the DER form with header and footer lines.
37
38 =item B<-in filename>
39
40 This specifies the input filename to read a CRL from or standard input if this
41 option is not specified.
42
43 =item B<-out filename>
44
45 specifies the output filename to write the PKCS#7 structure to or standard
46 output by default.
47
48 =item B<-certfile filename>
49
50 specifies a filename containing one or more certificates in B<PEM> format.
51 All certificates in the file will be added to the PKCS#7 structure. This
52 option can be used more than once to read certificates form multiple
53 files.
54
55 =item B<-nocrl>
56
57 normally a CRL is included in the output file. With this option no CRL is
58 included in the output file and a CRL is not read from the input file.
59
60 =back
61
62 =head1 EXAMPLES
63
64 Create a PKCS#7 structure from a certificate and CRL:
65
66  openssl crl2pkcs7 -in crl.pem -certfile cert.pem -out p7.pem
67
68 Creates a PKCS#7 structure in DER format with no CRL from several
69 different certificates:
70
71  openssl crl2pkcs7 -nocrl -certfile newcert.pem 
72         -certfile demoCA/cacert.pem -outform DER -out p7.der
73
74 =head1 NOTES
75
76 The output file is a PKCS#7 signed data structure containing no signers and
77 just certificates and an optional CRL.
78
79 This utility can be used to send certificates and CAs to Netscape as part of
80 the certificate enrollment process. This involves sending the DER encoded output
81 as MIME type application/x-x509-user-cert.
82
83 The B<PEM> encoded form with the header and footer lines removed can be used to
84 install user certificates and CAs in MSIE using the Xenroll control.
85
86 =head1 SEE ALSO
87
88 pkcs7(1)
89
90 =cut