Modify the add_seeds_stringlist() macro to fix a preprocessor error
[openssl.git] / doc / man1 / openssl-storeutl.pod
1 =pod
2
3 =head1 NAME
4
5 openssl-storeutl - STORE utility
6
7 =head1 SYNOPSIS
8
9 B<openssl> B<storeutl>
10 [B<-help>]
11 [B<-out> I<file>]
12 [B<-noout>]
13 [B<-passin> I<arg>]
14 [B<-text> I<arg>]
15 [B<-engine> I<id>]
16 [B<-r>]
17 [B<-certs>]
18 [B<-keys>]
19 [B<-crls>]
20 [B<-subject> I<arg>]
21 [B<-issuer> I<arg>]
22 [B<-serial> I<arg>]
23 [B<-alias> I<arg>]
24 [B<-fingerprint> I<arg>]
25 [B<-I<digest>>]
26 I<uri> ...
27
28 =head1 DESCRIPTION
29
30 This command can be used to display the contents (after
31 decryption as the case may be) fetched from the given URIs.
32
33 =head1 OPTIONS
34
35 =over 4
36
37 =item B<-help>
38
39 Print out a usage message.
40
41 =item B<-out> I<filename>
42
43 specifies the output filename to write to or standard output by
44 default.
45
46 =item B<-noout>
47
48 this option prevents output of the PEM data.
49
50 =item B<-passin> I<arg>
51
52 the key password source. For more information about the format of I<arg>
53 see L<openssl(1)/Pass Phrase Options>.
54
55 =item B<-text>
56
57 Prints out the objects in text form, similarly to the B<-text> output from
58 L<openssl-x509(1)>, L<openssl-pkey(1)>, etc.
59
60 =item B<-engine> I<id>
61
62 specifying an engine (by its unique I<id> string) will cause this command
63 to attempt to obtain a functional reference to the specified engine,
64 thus initialising it if needed.
65 The engine will then be set as the default for all available algorithms.
66
67 =item B<-r>
68
69 Fetch objects recursively when possible.
70
71 =item B<-certs>
72
73 =item B<-keys>
74
75 =item B<-crls>
76
77 Only select the certificates, keys or CRLs from the given URI.
78 However, if this URI would return a set of names (URIs), those are always
79 returned.
80
81 =item B<-subject> I<arg>
82
83 Search for an object having the subject name I<arg>.
84 The arg must be formatted as C</type0=value0/type1=value1/type2=...>.
85 Keyword characters may be escaped by \ (backslash), and whitespace is retained.
86 Empty values are permitted but are ignored for the search.  That is,
87 a search with an empty value will have the same effect as not specifying
88 the type at all.
89
90 =item B<-issuer> I<arg>
91
92 =item B<-serial> I<arg>
93
94 Search for an object having the given issuer name and serial number.
95 These two options I<must> be used together.
96 The issuer arg must be formatted as C</type0=value0/type1=value1/type2=...>,
97 characters may be escaped by \ (backslash), no spaces are skipped.
98 The serial arg may be specified as a decimal value or a hex value if preceded
99 by C<0x>.
100
101 =item B<-alias> I<arg>
102
103 Search for an object having the given alias.
104
105 =item B<-fingerprint> I<arg>
106
107 Search for an object having the given fingerprint.
108
109 =item B<-I<digest>>
110
111 The digest that was used to compute the fingerprint given with B<-fingerprint>.
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