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
OpenSSL supports it as well, at least in s_client there are options like -no_ticket to disable RFC 5077 (previously RFC 4507bis) ticket-based session resumption and -reconnect option to test session ID-based session resumption.
Rustls supports TLS session resumption: https://docs.rs/rustls/0.23.16/rustls/client/struct.Resumption.html
But in native-tls there seems to be no way to enable it even though OpenSSL, Schannel (Windows) and Security Framework support it.
OpenSSL supports it as well, at least in s_client there are options like
-no_ticket
to disable RFC 5077 (previously RFC 4507bis) ticket-based session resumption and-reconnect
option to test session ID-based session resumption.Schannel supports session resumption: https://learn.microsoft.com/en-us/windows-server/security/tls/transport-layer-security-protocol#BKMK_SessionResumption
security-framework
also has an option to enable it: https://docs.rs/security-framework/3.0.0/security_framework/secure_transport/struct.ClientBuilder.htmlThe text was updated successfully, but these errors were encountered: