openssl-crl.pod.in 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. =pod
  2. =begin comment
  3. {- join("\n", @autowarntext) -}
  4. =end comment
  5. =head1 NAME
  6. openssl-crl - CRL utility
  7. =head1 SYNOPSIS
  8. B<openssl> B<crl>
  9. [B<-help>]
  10. [B<-inform> B<DER>|B<PEM>]
  11. [B<-outform> B<DER>|B<PEM>]
  12. [B<-keyform> B<DER>|B<PEM>|B<ENGINE>]
  13. [B<-text>]
  14. [B<-in> I<filename>]
  15. [B<-out> I<filename>]
  16. [B<-nameopt> I<option>]
  17. [B<-noout>]
  18. [B<-hash>]
  19. [B<-issuer>]
  20. [B<-lastupdate>]
  21. [B<-nextupdate>]
  22. {- $OpenSSL::safe::opt_trust_synopsis -}
  23. =for openssl ifdef hash_old
  24. =head1 DESCRIPTION
  25. This command processes CRL files in DER or PEM format.
  26. =head1 OPTIONS
  27. =over 4
  28. =item B<-help>
  29. Print out a usage message.
  30. =item B<-inform> B<DER>|B<PEM>, B<-outform> B<DER>|B<PEM>
  31. The input and output formats of the CRL; the default is B<PEM>.
  32. See L<openssl(1)/Format Options> for details.
  33. =item B<-keyform> B<DER>|B<PEM>|B<ENGINE>
  34. The format of the private key file; the default is B<PEM>.
  35. See L<openssl(1)/Format Options> for details.
  36. =item B<-in> I<filename>
  37. This specifies the input filename to read from or standard input if this
  38. option is not specified.
  39. =item B<-out> I<filename>
  40. Specifies the output filename to write to or standard output by
  41. default.
  42. =item B<-text>
  43. Print out the CRL in text form.
  44. =item B<-nameopt> I<option>
  45. Option which determines how the subject or issuer names are displayed. See
  46. the description of B<-nameopt> in L<openssl-x509(1)>.
  47. =item B<-noout>
  48. Don't output the encoded version of the CRL.
  49. =item B<-hash>
  50. Output a hash of the issuer name. This can be use to lookup CRLs in
  51. a directory by issuer name.
  52. =item B<-hash_old>
  53. Outputs the "hash" of the CRL issuer name using the older algorithm
  54. as used by OpenSSL before version 1.0.0.
  55. =item B<-issuer>
  56. Output the issuer name.
  57. =item B<-lastupdate>
  58. Output the lastUpdate field.
  59. =item B<-nextupdate>
  60. Output the nextUpdate field.
  61. {- $OpenSSL::safe::opt_trust_item -}
  62. =back
  63. =head1 EXAMPLES
  64. Convert a CRL file from PEM to DER:
  65. openssl crl -in crl.pem -outform DER -out crl.der
  66. Output the text form of a DER encoded certificate:
  67. openssl crl -in crl.der -inform DER -text -noout
  68. =head1 BUGS
  69. Ideally it should be possible to create a CRL using appropriate options
  70. and files too.
  71. =head1 SEE ALSO
  72. L<openssl(1)>,
  73. L<openssl-crl2pkcs7(1)>,
  74. L<openssl-ca(1)>,
  75. L<openssl-x509(1)>,
  76. L<ossl_store-file(7)>
  77. =head1 COPYRIGHT
  78. Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
  79. Licensed under the Apache License 2.0 (the "License"). You may not use
  80. this file except in compliance with the License. You can obtain a copy
  81. in the file LICENSE in the source distribution or at
  82. L<https://www.openssl.org/source/license.html>.
  83. =cut