Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on iPhone app with NSURLConnection api. I created Login/Signup screens and just realized something missing with my website server that I didn't have SSL certificate yet for secure personal info.

I am wondering if you ever need to have SSL certificate for your website server for your iPhone app to get HTTP request for your login/signup. My app doesn't have any payment info just only username/email/password info. I just want to make sure all those infos will be stored in a secure way. Please let me know if I need SSL certificate or not. Any suggestion appreciated. Thanks!

share|improve this question
1  
If you don't secure and it gets sent plaintext, your accounts could be hijacked and worse, if the user uses the same password for things like Facebook, you could have serious egg on your face. – Jeff Watkins May 31 '12 at 22:40

3 Answers

up vote 3 down vote accepted

You mix talk of storage and transmission in the same sentence but they are separate things and the SSL has got nothing to do with storage of items on the iOS device.

If you transmit the information using HTTP it will be unencrypted and anybody can read it.

In order to encrypt it you have to send it using HTTPS, which requires a certificate.

This will only encrypt the data, it won't prove to your device that the server is who it says it is. Even if you are using HTTPS/certifcates there is no guarantee that the server is who he says he is UNLESS you additionally validate that certificate in your handset code. If you want good reference material for this see the book "iOS 5 Programming Pushing The Limits".

As for secure storage of data on the client that's an entirely different matter (the quick and easy answer that everybody says is use keychains, however if you're serious about security I recommend reading the book "Hacking and Securing iOS Applications" to realize just how insecure data on the iPhone can be.).

share|improve this answer
You are right. Thank you for the info. – hightech Jun 1 '12 at 17:42

No you don't need to, but it is recommended as otherwise, the credentials will be sent in cleartext.

share|improve this answer

you can go for SSL certificate when you want to encrypt your request with HTTPS for your username/email/password.. you will need SSL when your site is using payment gateways where encryption is required and to prevent from hijacking.. If you want to have SSL certificate now or in future you can check at TuckTail.com.. when you go for SSL certification your site will be free from Malware and all your information will be secured...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.