Hi Team,
There is situation in which I want to implement session Resumption in IOS. I am using Network Framework but I am unable to find a way, how to enable the resumption . It will more beneficial for me if you guys can help me in that.
Regards,
Hi Team,
There is situation in which I want to implement session Resumption in IOS. I am using Network Framework but I am unable to find a way, how to enable the resumption . It will more beneficial for me if you guys can help me in that.
Regards,
Are you talking about TLS sessions?
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"
Yes, in TLS session, my idea is to enable the TLS Session Resumption and TLS False Start. I used below code with the help of Network Framework in my project but unable to get success.
let tlsOptions = NWProtocolTLS.Options()
sec_protocol_options_set_tls_resumption_enabled(tlsOptions.securityProtocolOptions, true) sec_protocol_options_set_tls_false_start_enabled(tlsOptions.securityProtocolOptions, true)
What TLS versions does your server support?
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"
Our server support TLS1.3
Have you tried it without enabling false start?
I don’t think that’s a factor, but I want to rule it out before going further.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"