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
s2n_connection_get_client_protocol_version returns S2N_TLS12 when a client connects that supports TLS1.3 if the s2n_connection is configured with a TLS1.2 max security policy.
When a TLS1.3 max security policy is configured, s2n_connection_get_client_protocol_version returns S2N_TLS13 as expected.
Solution:
Ideally, s2n_connection_get_client_protocol_version should return the same value regardless of the server configuration used.
Does this change what S2N sends over the wire? No
Does this change any public APIs? Yes, to make the return value of s2n_connection_get_client_protocol_version consistent.
Which versions of TLS will this impact?
Requirements / Acceptance Criteria:
I would expect s2n_connection_get_client_protocol_version to always return S2N_TLS13 when a client connects that supports TLS1.3.
The text was updated successfully, but these errors were encountered:
Problem:
s2n_connection_get_client_protocol_version returns
S2N_TLS12
when a client connects that supports TLS1.3 if the s2n_connection is configured with a TLS1.2 max security policy.When a TLS1.3 max security policy is configured, s2n_connection_get_client_protocol_version returns
S2N_TLS13
as expected.Solution:
Ideally, s2n_connection_get_client_protocol_version should return the same value regardless of the server configuration used.
Requirements / Acceptance Criteria:
I would expect s2n_connection_get_client_protocol_version to always return
S2N_TLS13
when a client connects that supports TLS1.3.The text was updated successfully, but these errors were encountered: