objective c - iphone storing password locally and sending it across to a server securely -


I am writing an iPhone app that asks the user to register with login / password. This should be:

  1. Saved safely locally
  2. Send securely to a remote web server

What do I need to achieve? Say, for local storage, can I save them in a file or database? Can I encrypt it? To send it, is HTTPS sufficient?

Look for sensitive data stored in iPhone Keychain.


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -