nseq.pod 2.0 KB

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