[issue32882] SSLContext.set_ecdh_curve() not accepting x25519

2021-04-21 Thread sruester
sruester added the comment: PEP 543 was withdrawn in the meantime. Any suggestion how to proceed with this? -- versions: +Python 3.10, Python 3.11, Python 3.9 ___ Python tracker

[issue32882] SSLContext.set_ecdh_curve() not accepting x25519

2018-02-20 Thread sruester
Change by sruester : -- pull_requests: +5550 ___ Python tracker ___ ___

[issue32882] SSLContext.set_ecdh_curve() not accepting x25519

2018-02-20 Thread sruester
Change by sruester : -- keywords: +patch pull_requests: +5549 stage: needs patch -> patch review ___ Python tracker ___

[issue32882] SSLContext.set_ecdh_curve() not accepting x25519

2018-02-20 Thread Christian Heimes
Christian Heimes added the comment: This bug was originally the more generic issue #32858. SSLContext.set_ecdh_curve() uses EC_KEY_new_by_curve_name() and SSL_CTX_set_tmp_ecdh() to configure the ECDH curve parameters. The current approach has multiple downsides. It doesn't

[issue32882] SSLContext.set_ecdh_curve() not accepting x25519

2018-02-20 Thread sruester
New submission from sruester : Using SSLContext.set_ecdh_curve() it is neither possible to choose X25519, nor to choose a list of curves to be used for key agreement. -- assignee: christian.heimes components: SSL messages: 312405 nosy: christian.heimes, sruester