openssl-nseq.pod 1.8 KB

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