Skip to content Skip to sidebar Skip to footer

Python Tls Version Matching

I am using python 3.8 I got below outputs on my Ubuntu system: >>> import ssl >>> ssl.OPENSSL_VERSION 'OpenSSL 1.1.1f 31 Mar 2020' >>> ssl.PROTOCOL_TLSv

Solution 1:

I think this errors occurs because of the TLS version,

This is a network/transport layer problem, i.e. the client does not get the servers response and thus does not send the TCP ACK - or the client does send the ACK but it is lost on the way to the server (it is unclear where you sniff the traffic).

It has nothing to do with the TLS version and therefore you cannot solve it as this level.

Post a Comment for "Python Tls Version Matching"