Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updated to use a more commonly accepted regexp when replacing the OpenSSL function name (addresses [6c9bf49455]) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 12bf5e37e0797c824c22ca2c2c0636f31cd4aa22 |
User & Date: | rkeene 2017-10-17 03:57:12 |
References
2017-11-08
| ||
14:57 | • Closed ticket [34cfe47490]: tcltls-1.7.12 on FreeBSD 11 plus 4 other changes artifact: fb12d55338 user: rkeene | |
Context
2017-12-21
| ||
20:25 | Merged in changes to address [f798e2ea12]. The code to manipulate the channel options may not be needed at all, we will review it to see if there are any issues with removing it altogether check-in: a811816bd3 user: rkeene tags: trunk | |
05:34 | Added experiment patch for [f798e2ea12] to preserve channel state when importing a channel Closed-Leaf check-in: 60f37290f3 user: rkeene tags: bug-f798e2ea12 | |
2017-11-08
| ||
15:00 | TclTLS 1.7.14 check-in: 70cbcd6815 user: rkeene tags: tls-1-7, tls-1-7-14 | |
14:59 | Still looking into this Leaf check-in: 7793b78e70 user: rkeene tags: bug-eof-loop-6dd5588df6-2 | |
2017-10-17
| ||
03:57 | Updated to use a more commonly accepted regexp when replacing the OpenSSL function name (addresses [6c9bf49455]) check-in: 12bf5e37e0 user: rkeene tags: trunk | |
2017-09-01
| ||
00:16 | Try harder to ensure the right SSL libraries are used check-in: 6704c33e48 user: rkeene tags: trunk | |
Changes
Changes to gen_dh_params.
12 12 ;; 13 13 esac 14 14 done 15 15 16 16 openssl_dhparam() { 17 17 if [ -x "`which openssl 2>/dev/null`" ]; then 18 18 o_output="`openssl dhparam -C "$@" 2>/dev/null`" || return 1 19 - o_output="`echo "${o_output}" | sed 's/get_dh[0-9]\+/get_dhParams/'`" || return 1 19 + o_output="`echo "${o_output}" | sed 's/get_dh[0-9][0-9]*/get_dhParams/'`" || return 1 20 20 o_output="`echo "${o_output}" | sed '/^-----BEGIN DH PARAMETERS-----$/,/^-----END DH PARAMETERS-----$/ d;/^#/ d'`" || return 1 21 21 22 22 echo "${o_output}" 23 23 24 24 return 0 25 25 fi 26 26