You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It may be worth it in the future to explicitly ignore TLS session resumption ClientHellos. Now we don't, and I need to investigate how best to handle this.
Rule for TLS 1.2 is:
if tls.ClientHello.SessionIdLength == 0:
not session_resumption
else:
session_resumption
The text was updated successfully, but these errors were encountered:
It may be worth it in the future to explicitly ignore TLS session resumption ClientHellos. Now we don't, and I need to investigate how best to handle this.
Rule for TLS 1.2 is:
if tls.ClientHello.SessionIdLength == 0:
not session_resumption
else:
session_resumption
The text was updated successfully, but these errors were encountered: