1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Tool Command Language (TCL) Transport Layer Security (TLS) Extension
Intro
=====
This package provides an extension which implements Secure Socket Layer (SSL)
and Transport Layer Security (TLS) over Transmission Control Protocol (TCP)
network communication channels. It utilizes either the OpenSSL or LibreSSL
software library.
Version 1.9 also provides a cryptography library providing TCL scripts access
to the crypto capabilities of the OpenSSL library.
Description
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Tool Command Language (TCL) Transport Layer Security (TLS) Extension
Intro
=====
This package provides an extension which implements Secure Socket Layer (SSL)
and Transport Layer Security (TLS) over Transmission Control Protocol (TCP)
network communication channels. It utilizes either the OpenSSL
software library.
Version 1.9 also provides a cryptography library providing TCL scripts access
to the crypto capabilities of the OpenSSL library.
Description
|
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
Compatibility
=============
This package requires TCL 8.5 or later.
This package is compatible with:
- OpenSSL v1.1.1 or later. See (http://www.openssl.org/
- LibreSSL (TBD version)
Installation
============
This package uses the Tcl Extension Architecture (TEA) to build and install on
any supported Unix, Mac, or MS Windows system. Either the OpenSSL or LibreSSL
software libraries must be built and available prior to building TCL TLS.
UNIX and Linux
--------------
The standard TEA config, make and install process is supported.
|
<
|
|
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
Compatibility
=============
This package requires TCL 8.5 or later.
This package is compatible with:
- OpenSSL v1.1.1 or later. See (http://www.openssl.org/
Installation
============
This package uses the Tcl Extension Architecture (TEA) to build and install on
any supported Unix, Mac, or MS Windows system. Either the OpenSSL
software libraries must be built and available prior to building TCL TLS.
UNIX and Linux
--------------
The standard TEA config, make and install process is supported.
|
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
--enable-static-ssl enable static linking to the SSL library
If either TCL or OpenSSL are installed in non-standard locations, the following
configure options are available. For all options, see ./configure --help.
--with-tcl=<dir> path to where tclCondig.sh file resides
--with-tclinclude=<dir> directory containing the public Tcl header files
--with-openssl-dir=<dir> path to root directory of OpenSSL or LibreSSL installation
--with-openssl-includedir=<dir> path to include directory of OpenSSL or LibreSSL installation
--with-openssl-libdir=<dir> path to lib directory of OpenSSL or LibreSSL installation
--with-openssl-pkgconfig=<dir> path to root directory of OpenSSL or LibreSSL pkgconfigdir
MacOS
-----
The standard TEA installation process is supported. Use the --with-tcl option
to set the TCL path if the ActiveState or other non-Apple version of TCL is to
|
|
|
|
|
|
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
--enable-static-ssl enable static linking to the SSL library
If either TCL or OpenSSL are installed in non-standard locations, the following
configure options are available. For all options, see ./configure --help.
--with-tcl=<dir> path to where tclCondig.sh file resides
--with-tclinclude=<dir> directory containing the public Tcl header files
--with-openssl-dir=<dir> path to root directory of OpenSSL installation
--with-openssl-includedir=<dir> path to include directory of OpenSSL installation
--with-openssl-libdir=<dir> path to lib directory of OpenSSL installation
--with-openssl-pkgconfig=<dir> path to root directory of OpenSSL pkg-config directory
MacOS
-----
The standard TEA installation process is supported. Use the --with-tcl option
to set the TCL path if the ActiveState or other non-Apple version of TCL is to
|