openssl-nseq.pod.in 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. =pod
  2. {- OpenSSL::safe::output_do_not_edit_headers(); -}
  3. =head1 NAME
  4. openssl-nseq - create or examine a Netscape certificate sequence
  5. =head1 SYNOPSIS
  6. B<openssl> B<nseq>
  7. [B<-help>]
  8. [B<-in> I<filename>]
  9. [B<-out> I<filename>]
  10. [B<-toseq>]
  11. {- $OpenSSL::safe::opt_provider_synopsis -}
  12. =head1 DESCRIPTION
  13. This command takes a file containing a Netscape certificate
  14. sequence and prints out the certificates contained in it or takes a
  15. file of certificates and converts it into a Netscape certificate
  16. sequence.
  17. A Netscape certificate sequence is an old Netscape-specific format that
  18. can be sometimes be sent to browsers as an alternative to the standard PKCS#7
  19. format when several certificates are sent to the browser, for example during
  20. certificate enrollment. It was also used by Netscape certificate server.
  21. =head1 OPTIONS
  22. =over 4
  23. =item B<-help>
  24. Print out a usage message.
  25. =item B<-in> I<filename>
  26. This specifies the input filename to read or standard input if this
  27. option is not specified.
  28. =item B<-out> I<filename>
  29. Specifies the output filename or standard output by default.
  30. =item B<-toseq>
  31. Normally a Netscape certificate sequence will be input and the output
  32. is the certificates contained in it. With the B<-toseq> option the
  33. situation is reversed: a Netscape certificate sequence is created from
  34. a file of certificates.
  35. {- $OpenSSL::safe::opt_provider_item -}
  36. =back
  37. =head1 EXAMPLES
  38. Output the certificates in a Netscape certificate sequence
  39. openssl nseq -in nseq.pem -out certs.pem
  40. Create a Netscape certificate sequence
  41. openssl nseq -in certs.pem -toseq -out nseq.pem
  42. =head1 COPYRIGHT
  43. Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved.
  44. Licensed under the Apache License 2.0 (the "License"). You may not use
  45. this file except in compliance with the License. You can obtain a copy
  46. in the file LICENSE in the source distribution or at
  47. L<https://www.openssl.org/source/license.html>.
  48. =cut