Let's say I want to build a SDK that communicates with a server. I don't want any one (not even the app that implements the SDK) to intercept and look at my requests/responses.
If I'd use a common lib like AFNetworking
it would be possible to look at all requests i.e by registering a NSURLProtocol
.
I'm assuming that this would be harder to do if I would use i.e CFNetworking
to perform my request/response handling? Or am I missing something? Would it be possible to intercept that traffic as well?