@@ -27,10 +27,11 @@
tls::socket ?-server command? ?options? port
tls::handshake channel
tls::status ?-local? channel
tls::import channel ?options?
+
tls::unimport channel
tls::ciphers protocol ?verbose?
tls::version
COMMANDS
@@ -48,20 +49,21 @@ toolkit.

SYNOPSIS

package require Tcl 8.2
-package require tls 1.5
+package require tls 1.6

tls::init ?options?
tls::socket ?options? host port
tls::socket ?-server command? ?options? port
tls::status ?-local? channel
tls::handshake channel

tls::import channel ?options?
+tls::unimport channel
tls::ciphers protocol ?verbose?
tls::version

@@ -206,10 +208,17 @@
-tls1 bool
Enable use of TLS v1. (default: false)
+
+
tls::unimport channel
+
Provided for symmetry to tls::import, this + unstacks the SSL-enabling of a regular Tcl channel. An error + is thrown if TLS is not the top stacked channel type.
+
+
tls::ciphers protocol ?verbose?
Returns list of supported ciphers based on the protocol you supply, which must be one of ssl2, ssl3, or tls1.