GCDAsyncSocket with Client Authentication
I have been using CocoaAsyncSocket to send data to our server without SSL. Now the server side has implemented SSL/TLS with client authentication. TO implement this in our app I was given the following three files: ca-chain.cert.pem client-test.cert.pem client-test.key.pem I converted the files to iOS readable formats as below: ca-chain.cert.pem to ca-cert.cer client-test.cert.pem to client_cert.cer client-test.key.pem to client_key.p12 I have got it working till SSL. But having trouble with Client Authentication. Here is my code: didConnectToHost: - (void)socket:(GCDAsyncSocket *)sock