0c633de3f978571ef912489c478be00a10a9fcd1
[platform/upstream/curl.git] / docs / mk-ca-bundle.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2  "http://www.w3.org/TR/html4/loose.dtd">
3 <html><head>
4 <title>mk-ca-bundle man page</title>
5 <meta name="generator" content="roffit">
6 <STYLE type="text/css">
7 P.level0 {
8  padding-left: 2em;
9 }
10
11 P.level1 {
12  padding-left: 4em;
13 }
14
15 P.level2 {
16  padding-left: 6em;
17 }
18
19 span.emphasis {
20  font-style: italic;
21 }
22
23 span.bold {
24  font-weight: bold;
25 }
26
27 span.manpage {
28  font-weight: bold;
29 }
30
31 h2.nroffsh {
32  background-color: #e0e0e0;
33 }
34
35 span.nroffip {
36  font-weight: bold;
37  font-size: 120%;
38  font-family: monospace;
39 }
40
41 p.roffit {
42  text-align: center;
43  font-size: 80%;
44 }
45 </STYLE>
46 </head><body>
47
48 <p class="level0"><a name="NAME"></a><h2 class="nroffsh">NAME</h2>
49 <p class="level0">mk-ca-bundle - convert mozilla's certdata.txt to PEM format <a name="SYNOPSIS"></a><h2 class="nroffsh">SYNOPSIS</h2>
50 <p class="level0">mk-ca-bundle [bilnpqstuv] <span Class="emphasis">[outputfile]</span> <a name="DESCRIPTION"></a><h2 class="nroffsh">DESCRIPTION</h2>
51 <p class="level0">The mk-ca-bundle tool downloads the certdata.txt file from Mozilla's source tree over HTTP, then parses certdata.txt and extracts certificates into PEM format.  By default, only CA root certificates trusted to issue SSL server authentication certificates are extracted. These are then processed with the OpenSSL commandline tool to produce the final ca-bundle file. 
52 <p class="level0">The default <span Class="emphasis">outputfile</span> name is <span Class="bold">ca-bundle.crt</span>. By setting it to '-' (a single dash) you will get the output sent to STDOUT instead of a file. 
53 <p class="level0">The PEM format this scripts uses for output makes the result readily available for use by just about all OpenSSL or GnuTLS powered applications, such as curl, wget and more. <a name="OPTIONS"></a><h2 class="nroffsh">OPTIONS</h2>
54 <p class="level0">The following options are supported: 
55 <p class="level0"><a name="-b"></a><span class="nroffip">-b</span> 
56 <p class="level1">backup an existing version of <span Class="emphasis">outputfilename</span> 
57 <p class="level0"><a name="-d"></a><span class="nroffip">-d [name]</span> 
58 <p class="level1">specify which Mozilla tree to pull certdata.txt from (or a custom URL). Valid names are: aurora, beta, central, mozilla, nss, release (default). They are shortcuts for which source tree to get the cert data from. 
59 <p class="level0"><a name="-f"></a><span class="nroffip">-f</span> 
60 <p class="level1">force rebuild even if certdata.txt is current (Added in version 1.17) 
61 <p class="level0"><a name="-i"></a><span class="nroffip">-i</span> 
62 <p class="level1">print version info about used modules 
63 <p class="level0"><a name="-l"></a><span class="nroffip">-l</span> 
64 <p class="level1">print license info about certdata.txt 
65 <p class="level0"><a name="-n"></a><span class="nroffip">-n</span> 
66 <p class="level1">no download of certdata.txt (to use existing) 
67 <p class="level0"><a name="-p"></a><span class="nroffip">-p [purposes]:[levels]</span> 
68 <p class="level1">list of Mozilla trust purposes and levels for certificates to include in output. Takes the form of a comma separated list of purposes, a colon, and a comma separated list of levels. The default is to include all certificates trusted to issue SSL Server certificates (SERVER_AUTH:TRUSTED_DELEGATOR). 
69 <p class="level1">(Added in version 1.21, Perl only) 
70 <p class="level1">Valid purposes are: 
71 <p class="level2">ALL, DIGITAL_SIGNATURE, NON_REPUDIATION, KEY_ENCIPHERMENT, DATA_ENCIPHERMENT, KEY_AGREEMENT, KEY_CERT_SIGN, CRL_SIGN, SERVER_AUTH (default), CLIENT_AUTH, CODE_SIGNING, EMAIL_PROTECTION, IPSEC_END_SYSTEM, IPSEC_TUNNEL, IPSEC_USER, TIME_STAMPING, STEP_UP_APPROVED 
72 <p class="level1">
73 <p class="level1">Valid trust levels are: 
74 <p class="level2">ALL, TRUSTED_DELEGATOR (default), NOT_TRUSTED, MUST_VERIFY_TRUST, TRUSTED 
75 <p class="level1">
76 <p class="level0"><a name="-q"></a><span class="nroffip">-q</span> 
77 <p class="level1">be really quiet (no progress output at all) 
78 <p class="level0"><a name="-t"></a><span class="nroffip">-t</span> 
79 <p class="level1">include plain text listing of certificates 
80 <p class="level0"><a name="-s"></a><span class="nroffip">-s [algorithms]</span> 
81 <p class="level1">comma separated list of signature algorithms with which to hash/fingerprint each certificate and output when run in plain text mode. 
82 <p class="level1">(Added in version 1.21, Perl only) 
83 <p class="level1">Valid algorithms are: 
84 <p class="level2">ALL, NONE, MD5 (default), SHA1, SHA256, SHA384, SHA512 
85 <p class="level1">
86 <p class="level0"><a name="-u"></a><span class="nroffip">-u</span> 
87 <p class="level1">unlink (remove) certdata.txt after processing 
88 <p class="level0"><a name="-v"></a><span class="nroffip">-v</span> 
89 <p class="level1">be verbose and print out processed CAs <a name="EXIT"></a><h2 class="nroffsh">EXIT STATUS</h2>
90 <p class="level0">Returns 0 on success. Returns 1 if it fails to download data. <a name="CERTDATA"></a><h2 class="nroffsh">CERTDATA FORMAT</h2>
91 <p class="level0">The file format used by Mozilla for this trust information seems to be documented here: <pre>
92 <p class="level0"><a href="http://p11-glue.freedesktop.org/doc/storing-trust-policy/storing-trust-existing.html">http://p11-glue.freedesktop.org/doc/storing-trust-policy/storing-trust-existing.html</a>
93  </pre>
94
95 <p class="level0"><a name="SEE"></a><h2 class="nroffsh">SEE ALSO</h2>
96 <p class="level0"><span Class="manpage">curl (1)</span> <a name="HISTORY"></a><h2 class="nroffsh">HISTORY</h2>
97 <p class="level0"><span Class="bold">mk-ca-bundle</span> is a command line tool that is shipped as part of every curl and libcurl release (see <a href="http://curl.haxx.se/">http://curl.haxx.se/</a>). It was originally based on the parse-certs script written by Roland Krikava and was later much improved by Guenter Knauf.  This manual page was initially written by Jan Schaumann &lt;jschauma@netmeister.org&gt;. <p class="roffit">
98  This HTML page was made with <a href="http://daniel.haxx.se/projects/roffit/">roffit</a>.
99 </body></html>