Gukki5
Gukki5

Reputation: 517

Install TLS 1.2 Certificate on iOS App

How do I install a certified TLS certificate on an iOS app?

I assume there also needs to be the ability to send a new certificate over the network to the app in the future, if need be, and how exactly would that work?

I assume once it's installed that Apple will handle the entire handshake process of the device side?

Had some trouble finding explicit answers to these questions online.

Upvotes: 0

Views: 1789

Answers (1)

user149341
user149341

Reputation:

Assuming that what you are describing is a signed SSL certificate for your domain name, the only thing you will need to do is install it on your web server. When your application makes a request to your web server, the server will send the certificate to the client during the initial HTTPS handshake, and the client will verify it automatically.

Upvotes: 1

Related Questions