This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author EA
Recipients EA, christian.heimes
Date 2019-03-30.11:23:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1553945035.34.0.303610202958.issue36484@roundup.psfhosted.org>
In-reply-to
Content
Wen using the SSL module, I need to be able to reorder the ciphersuites list in TLS 1.3. I was able to do this with python using SSLContext.set_ciphers(ciphers) when working with TLS 1.2. But this is not possible with TLS 1.3 ciphersuites. The need to reorder the ciphersuites is needed because one might need a specific order to simulate specific TLS client that send the ciphersuites in specific order. Unfortunately this is seems not possible now in python with TLS 1.3 as the comment in the documentations says: https://docs.python.org/3/library/ssl.html#ssl.SSLContext.set_ciphers

Can you please consider this post as a feature request? Or clarify to me how to reorder the ciphersuites list when working with TLS 1.3?
History
Date User Action Args
2019-03-30 11:23:55EAsetrecipients: + EA, christian.heimes
2019-03-30 11:23:55EAsetmessageid: <1553945035.34.0.303610202958.issue36484@roundup.psfhosted.org>
2019-03-30 11:23:55EAlinkissue36484 messages
2019-03-30 11:23:55EAcreate