1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
5 <title>Reference</title>
6 <link rel="stylesheet" href="../luadoc.css" type="text/css" />
7 <!--meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/-->
14 <div id="product_logo"></div>
15 <div id="product_name"><big><b></b></big></div>
16 <div id="product_description"></div>
17 </div> <!-- id="product" -->
27 <li><a href="../index.html">Index</a></li>
38 <a href="../modules/luci.dispatcher.html">luci.dispatcher</a>
42 <a href="../modules/luci.http.html">luci.http</a>
46 <a href="../modules/luci.http.conditionals.html">luci.http.conditionals</a>
50 <a href="../modules/luci.http.date.html">luci.http.date</a>
54 <a href="../modules/luci.http.mime.html">luci.http.mime</a>
58 <a href="../modules/luci.i18n.html">luci.i18n</a>
62 <a href="../modules/luci.ip.html">luci.ip</a>
66 <a href="../modules/luci.ip.cidr.html">luci.ip.cidr</a>
70 <a href="../modules/luci.json.html">luci.json</a>
74 <a href="../modules/luci.jsonc.html">luci.jsonc</a>
78 <a href="../modules/luci.jsonc.parser.html">luci.jsonc.parser</a>
82 <a href="../modules/luci.model.ipkg.html">luci.model.ipkg</a>
86 <a href="../modules/luci.model.uci.html">luci.model.uci</a>
90 <a href="../modules/luci.rpcc.html">luci.rpcc</a>
94 <a href="../modules/luci.rpcc.ruci.html">luci.rpcc.ruci</a>
98 <a href="../modules/luci.sys.html">luci.sys</a>
102 <a href="../modules/luci.sys.init.html">luci.sys.init</a>
106 <a href="../modules/luci.sys.iptparser.html">luci.sys.iptparser</a>
110 <a href="../modules/luci.sys.net.html">luci.sys.net</a>
114 <a href="../modules/luci.sys.process.html">luci.sys.process</a>
118 <a href="../modules/luci.sys.user.html">luci.sys.user</a>
122 <a href="../modules/luci.sys.wifi.html">luci.sys.wifi</a>
126 <a href="../modules/luci.util.html">luci.util</a>
130 <a href="../modules/nixio.html">nixio</a>
134 <a href="../modules/nixio.CHANGELOG.html">nixio.CHANGELOG</a>
138 <a href="../modules/nixio.CryptoHash.html">nixio.CryptoHash</a>
142 <a href="../modules/nixio.File.html">nixio.File</a>
146 <a href="../modules/nixio.README.html">nixio.README</a>
150 <a href="../modules/nixio.Socket.html">nixio.Socket</a>
153 <li><strong>nixio.TLSContext</strong></li>
156 <a href="../modules/nixio.TLSSocket.html">nixio.TLSSocket</a>
160 <a href="../modules/nixio.UnifiedIO.html">nixio.UnifiedIO</a>
164 <a href="../modules/nixio.bin.html">nixio.bin</a>
168 <a href="../modules/nixio.bit.html">nixio.bit</a>
172 <a href="../modules/nixio.crypto.html">nixio.crypto</a>
176 <a href="../modules/nixio.fs.html">nixio.fs</a>
191 </div><!-- id="navigation" -->
195 <h1>Object Instance <code>nixio.TLSContext</code></h1>
198 Transport Layer Security Context Object.</p>
207 <table class="function_list">
210 <td class="name" nowrap><a href="#TLSContext.create">TLSContext:create</a> (socket)</td>
212 Create a TLS Socket from a socket descriptor.</td>
216 <td class="name" nowrap><a href="#TLSContext.set_cert">TLSContext:set_cert</a> (path)</td>
218 Assign a PEM certificate to this context.</td>
222 <td class="name" nowrap><a href="#TLSContext.set_ciphers">TLSContext:set_ciphers</a> (cipherlist)</td>
224 Set the available ciphers for this context.</td>
228 <td class="name" nowrap><a href="#TLSContext.set_key">TLSContext:set_key</a> (path)</td>
230 Assign a PEM private key to this context.</td>
234 <td class="name" nowrap><a href="#TLSContext.set_verify">TLSContext:set_verify</a> (flag1, ...)</td>
236 Set the verification flags of this context.</td>
240 <td class="name" nowrap><a href="#TLSContext.set_verify_depth">TLSContext:set_verify_depth</a> (depth)</td>
242 Set the verification depth of this context.</td>
256 <h2><a name="functions"></a>Functions</h2>
257 <dl class="function">
261 <dt><a name="TLSContext.create"></a><strong>TLSContext:create</strong> (socket)</dt>
264 Create a TLS Socket from a socket descriptor.
271 socket: Socket Object
281 <h3>Return value:</h3>
291 <dt><a name="TLSContext.set_cert"></a><strong>TLSContext:set_cert</strong> (path)</dt>
294 Assign a PEM certificate to this context.
301 path: Certificate File path
310 This function calls SSL_CTX_use_certificate_chain_file().
314 <h3>Return value:</h3>
324 <dt><a name="TLSContext.set_ciphers"></a><strong>TLSContext:set_ciphers</strong> (cipherlist)</dt>
327 Set the available ciphers for this context.
334 cipherlist: String containing a list of ciphers
343 This function calls SSL_CTX_set_cipher_list().
347 <h3>Return value:</h3>
357 <dt><a name="TLSContext.set_key"></a><strong>TLSContext:set_key</strong> (path)</dt>
360 Assign a PEM private key to this context.
367 path: Private Key File path
376 This function calls SSL_CTX_use_PrivateKey_file().
380 <h3>Return value:</h3>
390 <dt><a name="TLSContext.set_verify"></a><strong>TLSContext:set_verify</strong> (flag1, ...)</dt>
393 Set the verification flags of this context.
400 flag1: First Flag ["none", "peer", "verify_fail_if_no_peer_cert",
405 ...: More Flags [-"-]
414 This function calls SSL_CTX_set_verify().
418 <h3>Return value:</h3>
428 <dt><a name="TLSContext.set_verify_depth"></a><strong>TLSContext:set_verify_depth</strong> (depth)</dt>
431 Set the verification depth of this context.
447 This function calls SSL_CTX_set_verify_depth().
451 <h3>Return value:</h3>
465 </div> <!-- id="content" -->
467 </div> <!-- id="main" -->
470 <p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
471 </div> <!-- id="about" -->
473 </div> <!-- id="container" -->