Tuesday 23 August 2016

iphone - Encrypt passwords in SQLite database?

I have 2 two text fields, one for username and password: when the user enters a username and password and click on the "save" button the username and password is getting save in the SQLite database.



I want to save to username and password in encrypted format for more security.

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...