Python Forum

Full Version: Get the Client-Side TLS ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Does anyone know how I can capture the client’s TLS using the ssl module, because I need to be able to negotiate the TLS version to be used in an SSL connection ?
see: https://docs.python.org/3/library/ssl.html which has some example code.
also take a look at: https://stackoverflow.com/a/50538143 which is a good response to a similar question