doc: document that 'openssl rand' is cryptographically secure
[openssl.git] / doc / man1 / openssl-pkcs7.pod.in
1 =pod
2
3 =begin comment
4 {- join("\n", @autowarntext) -}
5
6 =end comment
7
8 =head1 NAME
9
10 openssl-pkcs7 - PKCS#7 utility
11
12 =head1 SYNOPSIS
13
14 B<openssl> B<pkcs7>
15 [B<-help>]
16 [B<-inform> B<DER>|B<PEM>]
17 [B<-outform> B<DER>|B<PEM>]
18 [B<-in> I<filename>]
19 [B<-out> I<filename>]
20 [B<-print>]
21 [B<-print_certs>]
22 [B<-text>]
23 [B<-noout>]
24 {- $OpenSSL::safe::opt_engine_synopsis -}
25
26 =for openssl ifdef engine
27
28 =head1 DESCRIPTION
29
30 This command processes PKCS#7 files.  Note that it only understands PKCS#7
31 v 1.5 as specified in IETF RFC 2315.  It cannot currently parse CMS as
32 described in IETF RFC 2630.
33
34 =head1 OPTIONS
35
36 =over 4
37
38 =item B<-help>
39
40 Print out a usage message.
41
42 =item B<-inform> B<DER>|B<PEM>, B<-outform> B<DER>|B<PEM>
43
44 The input and formats; the default is B<PEM>.
45 See L<openssl(1)/Format Options> for details.
46
47 The data is a PKCS#7 Version 1.5 structure.
48
49 =item B<-in> I<filename>
50
51 This specifies the input filename to read from or standard input if this
52 option is not specified.
53
54 =item B<-out> I<filename>
55
56 Specifies the output filename to write to or standard output by
57 default.
58
59 =item B<-print>
60
61 Print out the full PKCS7 object.
62
63 =item B<-print_certs>
64
65 Prints out any certificates or CRLs contained in the file. They are
66 preceded by their subject and issuer names in one line format.
67
68 =item B<-text>
69
70 Prints out certificate details in full rather than just subject and
71 issuer names.
72
73 =item B<-noout>
74
75 Don't output the encoded version of the PKCS#7 structure (or certificates
76 if B<-print_certs> is set).
77
78 {- $OpenSSL::safe::opt_engine_item -}
79
80 =back
81
82 =head1 EXAMPLES
83
84 Convert a PKCS#7 file from PEM to DER:
85
86  openssl pkcs7 -in file.pem -outform DER -out file.der
87
88 Output all certificates in a file:
89
90  openssl pkcs7 -in file.pem -print_certs -out certs.pem
91
92 =head1 SEE ALSO
93
94 L<openssl(1)>,
95 L<openssl-crl2pkcs7(1)>
96
97 =head1 COPYRIGHT
98
99 Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
100
101 Licensed under the Apache License 2.0 (the "License").  You may not use
102 this file except in compliance with the License.  You can obtain a copy
103 in the file LICENSE in the source distribution or at
104 L<https://www.openssl.org/source/license.html>.
105
106 =cut