Re: [Python-Dev] TLS handshake performance boost

2016-09-05 Thread Ned Deily
On 9/5/16 12:57, Christian Heimes wrote: > I have yet another patch for the ssl module, > http://bugs.python.org/issue19500 . The patch adds support for SSL > session resumption on the client side. [...] > > My patch takes care of these details. The basic features are pretty much > done and tested

[Python-Dev] TLS handshake performance boost

2016-09-05 Thread Christian Heimes
Hi, I have yet another patch for the ssl module, http://bugs.python.org/issue19500 . The patch adds support for SSL session resumption on the client side. A SSLContext automatically handles server-side session. SSL sessions speed up successive TLS connections to the same host considerable. My naïv