Reputation: 317
I am using 'pod 'AFNetworking', '~> 3.1.0' in one of my project which using Opentok SDK. I have received a mail which says Opentok will be disabling support for TLS 1.1 at a later date (July 31st, 2018). Can anyone help to check my TLS version using?
Upvotes: 1
Views: 333
Reputation: 26
App Transport Security requires TLSv1.2, so unless you are adding exceptions for individual hosts, AFNetworking must also be using TLSv1.2 for you.
However, the Tokbox SDK does not use AFNetworking, and has supported TLSv1.2 from at least the v2.6 SDK.
Upvotes: 1