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