Refactor -engine documentation
[openssl.git] / doc / man1 / openssl-storeutl.pod.in
1 =pod
2
3 =begin comment
4 {- join("\n", @autowarntext) -}
5
6 =end comment
7
8 =head1 NAME
9
10 openssl-storeutl - STORE utility
11
12 =head1 SYNOPSIS
13
14 B<openssl> B<storeutl>
15 [B<-help>]
16 [B<-out> I<file>]
17 [B<-noout>]
18 [B<-passin> I<arg>]
19 [B<-text> I<arg>]
20 [B<-r>]
21 [B<-certs>]
22 [B<-keys>]
23 [B<-crls>]
24 [B<-subject> I<arg>]
25 [B<-issuer> I<arg>]
26 [B<-serial> I<arg>]
27 [B<-alias> I<arg>]
28 [B<-fingerprint> I<arg>]
29 [B<-I<digest>>]
30 {- $OpenSSL::safe::opt_engine_synopsis -}
31 I<uri> ...
32
33 =head1 DESCRIPTION
34
35 This command can be used to display the contents (after
36 decryption as the case may be) fetched from the given URIs.
37
38 =head1 OPTIONS
39
40 =over 4
41
42 =item B<-help>
43
44 Print out a usage message.
45
46 =item B<-out> I<filename>
47
48 specifies the output filename to write to or standard output by
49 default.
50
51 =item B<-noout>
52
53 this option prevents output of the PEM data.
54
55 =item B<-passin> I<arg>
56
57 the key password source. For more information about the format of I<arg>
58 see L<openssl(1)/Pass Phrase Options>.
59
60 =item B<-text>
61
62 Prints out the objects in text form, similarly to the B<-text> output from
63 L<openssl-x509(1)>, L<openssl-pkey(1)>, etc.
64
65 =item B<-r>
66
67 Fetch objects recursively when possible.
68
69 =item B<-certs>
70
71 =item B<-keys>
72
73 =item B<-crls>
74
75 Only select the certificates, keys or CRLs from the given URI.
76 However, if this URI would return a set of names (URIs), those are always
77 returned.
78
79 =item B<-subject> I<arg>
80
81 Search for an object having the subject name I<arg>.
82 The arg must be formatted as C</type0=value0/type1=value1/type2=...>.
83 Keyword characters may be escaped by \ (backslash), and whitespace is retained.
84 Empty values are permitted but are ignored for the search.  That is,
85 a search with an empty value will have the same effect as not specifying
86 the type at all.
87
88 =item B<-issuer> I<arg>
89
90 =item B<-serial> I<arg>
91
92 Search for an object having the given issuer name and serial number.
93 These two options I<must> be used together.
94 The issuer arg must be formatted as C</type0=value0/type1=value1/type2=...>,
95 characters may be escaped by \ (backslash), no spaces are skipped.
96 The serial arg may be specified as a decimal value or a hex value if preceded
97 by C<0x>.
98
99 =item B<-alias> I<arg>
100
101 Search for an object having the given alias.
102
103 =item B<-fingerprint> I<arg>
104
105 Search for an object having the given fingerprint.
106
107 =item B<-I<digest>>
108
109 The digest that was used to compute the fingerprint given with B<-fingerprint>.
110
111 {- $OpenSSL::safe::opt_engine_item -}
112
113 =back
114
115 =head1 SEE ALSO
116
117 L<openssl(1)>
118
119 =head1 HISTORY
120
121 This command was added in OpenSSL 1.1.1.
122
123 =head1 COPYRIGHT
124
125 Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.
126
127 Licensed under the Apache License 2.0 (the "License").  You may not use
128 this file except in compliance with the License.  You can obtain a copy
129 in the file LICENSE in the source distribution or at
130 L<https://www.openssl.org/source/license.html>.
131
132 =cut