1STOREUTL(1) OpenSSL STOREUTL(1)
2
3
4
6 openssl-storeutl, storeutl - STORE utility
7
9 openssl storeutl [-help] [-out file] [-noout] [-passin arg] [-text arg]
10 [-engine id] [-r] [-certs] [-keys] [-crls] [-subject arg] [-issuer arg]
11 [-serial arg] [-alias arg] [-fingerprint arg] [-digest] uri ...
12
14 The storeutl command can be used to display the contents (after
15 decryption as the case may be) fetched from the given URIs.
16
18 -help
19 Print out a usage message.
20
21 -out filename
22 specifies the output filename to write to or standard output by
23 default.
24
25 -noout
26 this option prevents output of the PEM data.
27
28 -passin arg
29 the key password source. For more information about the format of
30 arg see the PASS PHRASE ARGUMENTS section in openssl(1).
31
32 -text
33 Prints out the objects in text form, similarly to the -text output
34 from openssl x509, openssl pkey, etc.
35
36 -engine id
37 specifying an engine (by its unique id string) will cause storeutl
38 to attempt to obtain a functional reference to the specified
39 engine, thus initialising it if needed. The engine will then be
40 set as the default for all available algorithms.
41
42 -r Fetch objects recursively when possible.
43
44 -certs
45 -keys
46 -crls
47 Only select the certificates, keys or CRLs from the given URI.
48 However, if this URI would return a set of names (URIs), those are
49 always returned.
50
51 -subject arg
52 Search for an object having the subject name arg. The arg must be
53 formatted as /type0=value0/type1=value1/type2=.... Keyword
54 characters may be escaped by \ (backslash), and whitespace is
55 retained. Empty values are permitted but are ignored for the
56 search. That is, a search with an empty value will have the same
57 effect as not specifying the type at all.
58
59 -issuer arg
60 -serial arg
61 Search for an object having the given issuer name and serial
62 number. These two options must be used together. The issuer arg
63 must be formatted as /type0=value0/type1=value1/type2=...,
64 characters may be escaped by \ (backslash), no spaces are skipped.
65 The serial arg may be specified as a decimal value or a hex value
66 if preceded by 0x.
67
68 -alias arg
69 Search for an object having the given alias.
70
71 -fingerprint arg
72 Search for an object having the given fingerprint.
73
74 -digest
75 The digest that was used to compute the fingerprint given with
76 -fingerprint.
77
79 openssl(1)
80
82 The openssl storeutl app was added in OpenSSL 1.1.1.
83
85 Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
86
87 Licensed under the OpenSSL license (the "License"). You may not use
88 this file except in compliance with the License. You can obtain a copy
89 in the file LICENSE in the source distribution or at
90 <https://www.openssl.org/source/license.html>.
91
92
93
941.1.1c 2019-05-28 STOREUTL(1)