]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - crypto/openssl/doc/apps/nseq.pod
MFC: r325328
[FreeBSD/FreeBSD.git] / crypto / openssl / doc / apps / nseq.pod
1 =pod
2
3 =head1 NAME
4
5 openssl-nseq,
6 nseq - create or examine a netscape certificate sequence
7
8 =head1 SYNOPSIS
9
10 B<openssl> B<nseq>
11 [B<-in filename>]
12 [B<-out filename>]
13 [B<-toseq>]
14
15 =head1 DESCRIPTION
16
17 The B<nseq> command takes a file containing a Netscape certificate
18 sequence and prints out the certificates contained in it or takes a
19 file of certificates and converts it into a Netscape certificate
20 sequence.
21
22 =head1 COMMAND OPTIONS
23
24 =over 4
25
26 =item B<-in filename>
27
28 This specifies the input filename to read or standard input if this
29 option is not specified.
30
31 =item B<-out filename>
32
33 specifies the output filename or standard output by default.
34
35 =item B<-toseq>
36
37 normally a Netscape certificate sequence will be input and the output
38 is the certificates contained in it. With the B<-toseq> option the
39 situation is reversed: a Netscape certificate sequence is created from
40 a file of certificates.
41
42 =back
43
44 =head1 EXAMPLES
45
46 Output the certificates in a Netscape certificate sequence
47
48  openssl nseq -in nseq.pem -out certs.pem
49
50 Create a Netscape certificate sequence
51
52  openssl nseq -in certs.pem -toseq -out nseq.pem
53
54 =head1 NOTES
55
56 The B<PEM> encoded form uses the same headers and footers as a certificate:
57
58  -----BEGIN CERTIFICATE-----
59  -----END CERTIFICATE-----
60
61 A Netscape certificate sequence is a Netscape specific form that can be sent
62 to browsers as an alternative to the standard PKCS#7 format when several
63 certificates are sent to the browser: for example during certificate enrollment.
64 It is used by Netscape certificate server for example.
65
66 =head1 BUGS
67
68 This program needs a few more options: like allowing DER or PEM input and
69 output files and allowing multiple certificate files to be used.
70
71 =cut