[issue30008] OpenSSL 1.1.0 deprecated functions

2020-06-01 Thread miss-islington
miss-islington added the comment: New changeset 24a88b008b075bca4494822cc7549c10868ab820 by Miss Islington (bot) in branch '3.9': bpo-30008: Fix OpenSSL no-deprecated compilation (GH-20397) https://github.com/python/cpython/commit/24a88b008b075bca4494822cc7549c10868ab820 --

[issue30008] OpenSSL 1.1.0 deprecated functions

2020-06-01 Thread miss-islington
miss-islington added the comment: New changeset 9c0ff178a5d5d0992c0be21a7f343a495338ad73 by Miss Islington (bot) in branch '3.8': bpo-30008: Fix OpenSSL no-deprecated compilation (GH-20397) https://github.com/python/cpython/commit/9c0ff178a5d5d0992c0be21a7f343a495338ad73 --

[issue30008] OpenSSL 1.1.0 deprecated functions

2020-06-01 Thread miss-islington
miss-islington added the comment: New changeset 296db8cc2fd089d0d2f23b7dddafc029be9f1eb6 by Miss Islington (bot) in branch '3.7': bpo-30008: Fix OpenSSL no-deprecated compilation (GH-20397) https://github.com/python/cpython/commit/296db8cc2fd089d0d2f23b7dddafc029be9f1eb6 --

[issue30008] OpenSSL 1.1.0 deprecated functions

2020-06-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +19807 pull_request: https://github.com/python/cpython/pull/20566 ___ Python tracker ___

[issue30008] OpenSSL 1.1.0 deprecated functions

2020-06-01 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 9.0 -> 10.0 pull_requests: +19806 pull_request: https://github.com/python/cpython/pull/20565 ___ Python tracker

[issue30008] OpenSSL 1.1.0 deprecated functions

2020-06-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +19808 pull_request: https://github.com/python/cpython/pull/20567 ___ Python tracker ___

[issue30008] OpenSSL 1.1.0 deprecated functions

2020-06-01 Thread Christian Heimes
Christian Heimes added the comment: New changeset a871f692b4a2e6c7d45579693e787edc0af1a02c by Christian Heimes in branch 'master': bpo-30008: Fix OpenSSL no-deprecated compilation (GH-20397) https://github.com/python/cpython/commit/a871f692b4a2e6c7d45579693e787edc0af1a02c --

[issue30008] OpenSSL 1.1.0 deprecated functions

2020-05-25 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +19660 pull_request: https://github.com/python/cpython/pull/20397 ___ Python tracker ___

[issue30008] OpenSSL 1.1.0 deprecated functions

2020-05-25 Thread Christian Heimes
Christian Heimes added the comment: Yes, it's still relevant. I haven't got time to look into the matter yet. -- versions: +Python 3.10, Python 3.8, Python 3.9 -Python 3.7 ___ Python tracker

[issue30008] OpenSSL 1.1.0 deprecated functions

2020-05-25 Thread Cheryl Sabella
Cheryl Sabella added the comment: @christian.heimes, is this issue and PR still relevant? You mention 3.8 in msg291343. Thanks! -- nosy: +cheryl.sabella ___ Python tracker

[issue30008] OpenSSL 1.1.0 deprecated functions

2018-03-06 Thread devurandom
Change by devurandom : -- nosy: +devurandom ___ Python tracker ___ ___ Python-bugs-list

[issue30008] OpenSSL 1.1.0 deprecated functions

2017-10-10 Thread Mark Wright
Mark Wright added the comment: Thanks, I opened https://github.com/python/cpython/pull/3943 for the rest of the changes (on top of your changes in https://github.com/python/cpython/pull/3934) to allow it to compile with OpenSSL 1.1.0f compiled with disable-deprecated.

[issue30008] OpenSSL 1.1.0 deprecated functions

2017-10-10 Thread Mark Wright
Change by Mark Wright : -- pull_requests: +3915 ___ Python tracker ___ ___

[issue30008] OpenSSL 1.1.0 deprecated functions

2017-10-09 Thread Christian Heimes
Christian Heimes added the comment: Thanks for your patches, Mark. A few remarks: Python 3.5 is in security fix-only mode. The issue is not a security bug. Python has switched to a different workflow a while ago. Please provide a pull request on GitHub against master (3.7).

[issue30008] OpenSSL 1.1.0 deprecated functions

2017-10-09 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +3908 stage: -> patch review ___ Python tracker ___

[issue30008] OpenSSL 1.1.0 deprecated functions

2017-10-09 Thread Mark Wright
Mark Wright added the comment: My proposed patch based on python 3.6.3 to remove the use of the API that was deprecated in openssl 1.1. As RAND_pseudo_bytes was removed I call RAND_bytes instead. -- Added file:

[issue30008] OpenSSL 1.1.0 deprecated functions

2017-10-09 Thread Mark Wright
Mark Wright added the comment: My proposed patch based on python 3.5.4 to remove the use of the API that was deprecated in openssl 1.1. As RAND_pseudo_bytes was removed I call RAND_bytes instead. -- Added file:

[issue30008] OpenSSL 1.1.0 deprecated functions

2017-10-09 Thread Mark Wright
Mark Wright added the comment: This patch allows python 3.4.6 to compile with openssl 1.1 without using the deprecated API. It is hacky though as I had to backport changes that were already in 3.5.4 and 3.6.3. Also RAND_pseudo_bytes was removed, so I call RAND_bytes

[issue30008] OpenSSL 1.1.0 deprecated functions

2017-10-09 Thread Mark Wright
Mark Wright added the comment: My proposed patch based on python 2.7.14 to remove the use of the API that was deprecated in openssl 1.1. -- keywords: +patch nosy: +gienah Added file: https://bugs.python.org/file47198/python-2.7.14-openssl-1.1.0.patch

[issue30008] OpenSSL 1.1.0 deprecated functions

2017-04-09 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___

[issue30008] OpenSSL 1.1.0 deprecated functions

2017-04-08 Thread Mike Gilbert
Mike Gilbert added the comment: Thanks for the reply. OpenSSL 1.1.0 added functions to control the SSL/TLS version used by SSL contexts created using TLS_method(). You might consider updating the code for existing Python branches to use these functions. SSL_CTX_set_min_proto_version

[issue30008] OpenSSL 1.1.0 deprecated functions

2017-04-08 Thread Christian Heimes
Christian Heimes added the comment: Thanks for your report. Python is going to require legacy functions like TLSv1_method() for a while. They are required to provide constants like PROTOCOL_TLSv1. I have deprecated these constants in 3.6 and they will be removed in 3.8. In the mean time

[issue30008] OpenSSL 1.1.0 deprecated functions

2017-04-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +alex, christian.heimes, dstufft, janssen ___ Python tracker ___

[issue30008] OpenSSL 1.1.0 deprecated functions

2017-04-06 Thread Mike Gilbert
New submission from Mike Gilbert: Some effort was made to port Python to OpenSSL 1.1.0 (see issue 26470). However, the code still uses several deprecated functions, and fails to compile against OpenSSL 1.1.0 if these functions are disabled. This may be replicated by building OpenSSL with