Custom Trust Store with AFNetworking

432 Views Asked by At

I'm developing some iOS apps and I'm downloading/uploading data which are very sensitive. I'm using AFNetworking to do that requests and my question is simple: I reach only 3 different certificates in all the app, can I custom AFNetworking's layer to accept only these 3 certificates?

The aim of this manipulation will be to avoid "Man To the Middle" attacks and so avoid injection and/or retrieval of any additional information during the HTTP exchanges.

1

There are 1 best solutions below

3
On

All AFNetworking operations inherit from AFURLConnectionOperation, which defines a block called authenticationChallenge. Setting this block on your operations will define how AFNetworking responds to the NSURLConnectionDelegate method connection:didReceiveAuthenticationChallenge:. Specifically, you will want to inspect challenge.proposedCredential.

If you don't want to set this block on every operation, you could also subclass the operation type you're using (like AFJSONRequestOperation, for example), and override connection: willSendRequestForAuthenticationChallenge: with the behavior you want.