[issue8106] SSL session management

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: I'm going to implement sessions in #19500. -- resolution: -> duplicate status: open -> closed superseder: -> Add client-side SSL session resumption versions: +Python 3.6 -Python 3.5 ___ Python tracker

[issue8106] SSL session management

2015-07-15 Thread Mladen Milosevic
Changes by Mladen Milosevic : -- nosy: +mladen.milosevic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue8106] SSL session management

2015-04-13 Thread lilydjwg
Changes by lilydjwg : -- nosy: +lilydjwg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue8106] SSL session management

2014-04-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ok, I propose the following plan: - add a new opaque type allowing to wrap a SSL_SESSION - add a get_session() method to SSLSocket, returning the current session - add an optional "session=..." parameter to SSLContext.wrap_socket, allowing to specify a session w

[issue8106] SSL session management

2014-04-17 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8106] SSL session management

2013-08-24 Thread Donald Stufft
Changes by Donald Stufft : -- nosy: +dstufft ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue8106] SSL session management

2013-06-13 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue8106] SSL session management

2013-04-09 Thread Wade
Changes by Wade : -- nosy: +WadeC ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman

[issue8106] SSL session management

2013-03-08 Thread Florian Weimer
Changes by Florian Weimer : -- nosy: +fweimer ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue8106] SSL session management

2010-12-14 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8106] SSL session management

2010-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: http://www.openssl.org/docs/ssl/SSL_CTX_set_session_cache_mode.html suggests that SSL session caching already occurs by default in server mode: “SSL_SESS_CACHE_SERVER Server sessions are added to the session cache. When a client proposes a session to be

[issue8106] SSL session management

2010-04-28 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue8106] SSL session management

2010-04-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: issue8550 is probably a prerequisite for implementing this properly. -- dependencies: +Expose SSL contexts nosy: +pitrou stage: -> needs patch versions: -Python 2.7 ___ Python tracker

[issue8106] SSL session management

2010-03-09 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: +janssen priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8106] SSL session management

2010-03-09 Thread Jesús Cea Avión
New submission from Jesús Cea Avión : Current SSL module doesn't manage SSL sessions, so any connection must do the full SSL handshake. SSL/TLS support session restarting, when an old SSL context is used in a new connection, so you don't need to do the full SSL handshake. This is a huge perfo