Setting Context to Use Default SSL Signature Algorithms TLS 1.2 #2
-
Hi. How can I use the default TLS1.2 algorithms without setting them specifically. I have tried something like this, but to no avail
|
Beta Was this translation helpful? Give feedback.
Answered by
ramikg
Apr 8, 2025
Replies: 1 comment 1 reply
-
By not calling Also, to force the TLS version to be 1.2, you will need to add the following lines: ssl_context.minimum_version = ssl.TLSVersion.TLSv1_2
ssl_context.maximum_version = ssl.TLSVersion.TLSv1_2 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
StephenMilner
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
By not calling
ssl_context_configurator.configure_signature_algorithms()
, you will use the default TLS signature algorithms.Note that the list of default signature algorithms varies according to the LibSSL version (and possibly some other factors).
Also, to force the TLS version to be 1.2, you will need to add the following lines: