[issue15071] TLS get keys and randoms

2016-05-06 Thread Christian Heimes
Christian Heimes added the comment: This request is an advanced use case. I'd rather keep the Python _ssl module simple and suggest PyOpenSSL + PyCA/cryptography for advanced features. -- status: open -> languishing versions: +Python 3.6 -Python 3.4

[issue15071] TLS get keys and randoms

2016-01-12 Thread Daniël van Eeden
Changes by Daniël van Eeden : -- nosy: +dveeden ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue15071] TLS get keys and randoms

2013-06-17 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue15071] TLS get keys and randoms

2012-06-28 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- versions: +Python 3.4 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15071] TLS get keys and randoms

2012-06-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ok, so it seems the functionality is described in http://tools.ietf.org/html/rfc5705. If I understand correctly, it takes an ASCII label string, an optional context bytestring, and the length of the desired derived key. It then returns a bytestring of the giv

[issue15071] TLS get keys and randoms

2012-06-17 Thread Daniel C.
Daniel C. added the comment: This function solve the problem "SSL_tls1_key_exporter" http://comments.gmane.org/gmane.comp.encryption.openssl.user/42015 included in the development version of OpenSSL 1.0.1 in the CVS how is the correct way to implement in the python bind? --

[issue15071] TLS get keys and randoms

2012-06-14 Thread Daniel C.
Daniel C. added the comment: ok. i try to do the patch! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue15071] TLS get keys and randoms

2012-06-14 Thread Martin v . Löwis
Martin v. Löwis added the comment: Daniel: Antoine is absolutely right. About the only way this can happen is if *you* contribute the code. Even if you would make clear what you want (what is a "master key" and the "hello randoms"?), it is likely that still nobody else needs that feature. So

[issue15071] TLS get keys and randoms

2012-06-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Please elaborate on what you are asking for, and try to make yourself understandable. Also, a good way to see your enhancement request fulfilled is to contribute it yourself; please take a look at the devguide: http://docs.python.org/devguide/ -- nosy

[issue15071] TLS get keys and randoms

2012-06-14 Thread Daniel C.
New submission from Daniel C. : I am develop a RADIUS server in 3.2 for WiFi authentication, the EAP-TLS or PEAP auths require a TLS tunnel AND get the master key and the client hello and server hello randoms to generate the MSK, the key to encrypt between WiFi user and WiFi access point. The