Skip to content
Discussion options

You must be logged in to vote

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:

ssl_context.minimum_version = ssl.TLSVersion.TLSv1_2
ssl_context.maximum_version = ssl.TLSVersion.TLSv1_2

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@StephenMilner
Comment options

Answer selected by StephenMilner
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants