I need to make sure my IOS app requires DNSSec when it connects to a given server. How can I make sure the DNS calls are always using this?
|
migrated from programmers.stackexchange.com Dec 26 '12 at 14:29
|
Since DNSSEC is not available at the OS level, I think the best option you have is to secure your app by checking your SSL server cerficiate more carefully than the OS naturally would. See this question for details. I would recommend embedding the CA certificate you expect to receive into your app, and comparing it byte-for-byte with the root of the trust chain. This is called certificate pinning. |
||||
|
|
|
You have to incorporate a DNS library to your source code. Try using libunbound. With libunbound you can verify the DNSSEC answer. With that, you can try to use DANE for securing your SSL certificate. |
|||
|
|
DNSSec is on the OS level. The only thing you can control in your app is the method of connection to your server. Just use Secure Sockets Layer - SSL in all your communication. |
|||
|
|