storeutl.pod 2.9 KB

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