[issue36484] Can't reorder TLS 1.3 ciphersuites

2022-02-28 Thread Sanchayan Ghosh
Change by Sanchayan Ghosh : Added file: https://bugs.python.org/file50652/0001-Add-TLS-v1.3-cipher-suite-set-function.patch ___ Python tracker <https://bugs.python.org/issue36

[issue36484] Can't reorder TLS 1.3 ciphersuites

2022-02-28 Thread Sanchayan Ghosh
Change by Sanchayan Ghosh : Removed file: https://bugs.python.org/file50650/0001-Add-TLS-v1.3-cipher-suite-set-function.patch ___ Python tracker <https://bugs.python.org/issue36

[issue36484] Can't reorder TLS 1.3 ciphersuites

2022-02-27 Thread Sanchayan Ghosh
Sanchayan Ghosh added the comment: Here is the PR as well. While I agree that there is no more a reason to reorder cipher suites and that we should use our certificates to basically ensure a secure connection, the advantage of the OpenSSL API is it provides us the function to influence the

[issue36484] Can't reorder TLS 1.3 ciphersuites

2022-02-27 Thread Sanchayan Ghosh
Sanchayan Ghosh added the comment: I have written a function that will allow us to reorder TLS v1.3. Since I have tried to keep a 1-1 binding, you will have to first remove the cipher suites entirely by giving a blank string, and then add TLS v1.2 and v1.3 cipher suites. -- keywords