Allow IPv6 address entry in tools>ping - Loosens valid character check
[tomato/davidwu.git] / release / src / router / openssl / doc / apps / crl.pod
bloba40c873b95689523487cf5c56a5de942eafef808
1 =pod
3 =head1 NAME
5 crl - CRL utility
7 =head1 SYNOPSIS
9 B<openssl> B<crl>
10 [B<-inform PEM|DER>]
11 [B<-outform PEM|DER>]
12 [B<-text>]
13 [B<-in filename>]
14 [B<-out filename>]
15 [B<-noout>]
16 [B<-hash>]
17 [B<-issuer>]
18 [B<-lastupdate>]
19 [B<-nextupdate>]
20 [B<-CAfile file>]
21 [B<-CApath dir>]
23 =head1 DESCRIPTION
25 The B<crl> command processes CRL files in DER or PEM format.
27 =head1 COMMAND OPTIONS
29 =over 4
31 =item B<-inform DER|PEM>
33 This specifies the input format. B<DER> format is DER encoded CRL
34 structure. B<PEM> (the default) is a base64 encoded version of
35 the DER form with header and footer lines.
37 =item B<-outform DER|PEM>
39 This specifies the output format, the options have the same meaning as the 
40 B<-inform> option.
42 =item B<-in filename>
44 This specifies the input filename to read from or standard input if this
45 option is not specified.
47 =item B<-out filename>
49 specifies the output filename to write to or standard output by
50 default.
52 =item B<-text>
54 print out the CRL in text form.
56 =item B<-noout>
58 don't output the encoded version of the CRL.
60 =item B<-hash>
62 output a hash of the issuer name. This can be use to lookup CRLs in
63 a directory by issuer name.
65 =item B<-issuer>
67 output the issuer name.
69 =item B<-lastupdate>
71 output the lastUpdate field.
73 =item B<-nextupdate>
75 output the nextUpdate field.
77 =item B<-CAfile file>
79 verify the signature on a CRL by looking up the issuing certificate in
80 B<file>
82 =item B<-CApath dir>
84 verify the signature on a CRL by looking up the issuing certificate in
85 B<dir>. This directory must be a standard certificate directory: that
86 is a hash of each subject name (using B<x509 -hash>) should be linked
87 to each certificate.
89 =back
91 =head1 NOTES
93 The PEM CRL format uses the header and footer lines:
95  -----BEGIN X509 CRL-----
96  -----END X509 CRL-----
98 =head1 EXAMPLES
100 Convert a CRL file from PEM to DER:
102  openssl crl -in crl.pem -outform DER -out crl.der
104 Output the text form of a DER encoded certificate:
106  openssl crl -in crl.der -text -noout
108 =head1 BUGS
110 Ideally it should be possible to create a CRL using appropriate options
111 and files too.
113 =head1 SEE ALSO
115 L<crl2pkcs7(1)|crl2pkcs7(1)>, L<ca(1)|ca(1)>, L<x509(1)|x509(1)>
117 =cut