In file deken-plugin.tcl, the TLS code needs to be updated to set the correct set of allowed options. For TcLTLS 1.7, 1.8, and 2.0:
(1) In line 31 change "package require tls 1.7" to "package require tls 1.7-". The dash is needed to be compatible with TclTLS 2.0.
(2) Change line 34 from "-ssl2 false -ssl3 false -tls1 true" to "-tls1 false -tls1.1 false". TcLTLS 1.7 will default to SSL2 and SSL3 disabled, and TLS 1.0, 1,1, 1,2, and 1.3 enabled. So 1.0 and 1.1 need to be disabled. In TclTLS 1.8 and 2.0, only TLS 1.2 and 1.3 are enabled.
In file deken-plugin.tcl, the TLS code needs to be updated to set the correct set of allowed options. For TcLTLS 1.7, 1.8, and 2.0:
(1) In line 31 change "package require tls 1.7" to "package require tls 1.7-". The dash is needed to be compatible with TclTLS 2.0.
(2) Change line 34 from "-ssl2 false -ssl3 false -tls1 true" to "-tls1 false -tls1.1 false". TcLTLS 1.7 will default to SSL2 and SSL3 disabled, and TLS 1.0, 1,1, 1,2, and 1.3 enabled. So 1.0 and 1.1 need to be disabled. In TclTLS 1.8 and 2.0, only TLS 1.2 and 1.3 are enabled.