[issue27866] ssl: get list of enabled ciphers

2016-09-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2a1c7d0fdde6 by Victor Stinner in branch 'default': Issue #27866: Fix refleak in cipher_to_dict() https://hg.python.org/cpython/rev/2a1c7d0fdde6 -- ___ Python tracker

[issue27866] ssl: get list of enabled ciphers

2016-09-06 Thread Berker Peksag
Changes by Berker Peksag : -- status: open -> closed ___ Python tracker ___ ___

[issue27866] ssl: get list of enabled ciphers

2016-09-06 Thread Christian Heimes
Christian Heimes added the comment: I have relaxed the tests and stabilized the buildbots. Some Gentoo machines don't have ECDHE cipher suites enabled. -- dependencies: -Make OpenSSL module compatible with OpenSSL 1.1.0 resolution: -> fixed stage: patch review -> resolved

[issue27866] ssl: get list of enabled ciphers

2016-09-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset dad4c42869f6 by Christian Heimes in branch 'default': Issue 27866: relax get_cipher() test even more. Gentoo buildbot has no ECDHE https://hg.python.org/cpython/rev/dad4c42869f6 -- ___ Python tracker

[issue27866] ssl: get list of enabled ciphers

2016-09-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9377ed49746b by Christian Heimes in branch 'default': Issue 27866: relax test case for set_cipher() and allow more cipher suites https://hg.python.org/cpython/rev/9377ed49746b -- ___ Python tracker

[issue27866] ssl: get list of enabled ciphers

2016-09-05 Thread Martin Panter
Martin Panter added the comment: Fails on the Gentoo buildbots: http://buildbot.python.org/all/builders/x86%20Gentoo%20Non-Debug%20with%20X%203.x/builds/1368/steps/test/logs/stdio == ERROR: test_get_ciphers

[issue27866] ssl: get list of enabled ciphers

2016-09-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset ca8d7cb55a8e by Christian Heimes in branch 'default': Issue #27866: Add SSLContext.get_ciphers() method to get a list of all enabled ciphers. https://hg.python.org/cpython/rev/ca8d7cb55a8e -- nosy: +python-dev

[issue27866] ssl: get list of enabled ciphers

2016-09-01 Thread Christian Heimes
Christian Heimes added the comment: KEA stands for key exchange algorithm. -- ___ Python tracker ___ ___

[issue27866] ssl: get list of enabled ciphers

2016-09-01 Thread Antoine Pitrou
Antoine Pitrou added the comment: What does "kea" mean? Key exchange? -- nosy: +pitrou ___ Python tracker ___

[issue27866] ssl: get list of enabled ciphers

2016-08-31 Thread Christian Heimes
Changes by Christian Heimes : -- stage: -> patch review ___ Python tracker ___ ___

[issue27866] ssl: get list of enabled ciphers

2016-08-31 Thread Christian Heimes
Changes by Christian Heimes : -- dependencies: +Make OpenSSL module compatible with OpenSSL 1.1.0 keywords: +patch Added file: http://bugs.python.org/file44307/Add-SSLContext.get_ciphers.patch ___ Python tracker

[issue27866] ssl: get list of enabled ciphers

2016-08-26 Thread Christian Heimes
New submission from Christian Heimes: SSLContext has a set_ciphers() method but no method to get the actual list of enabled ciphers. https://github.com/tiran/cpython/tree/feature/openssl_ciphers implements get_ciphers() >>> import ssl, pprint >>> ctx = ssl.SSLContext(ssl.PROTOCOL_SSLv23) >>>