I'm creating a simple journal app. I want the user be able to set a custom start-up password.
But what is the best practice? Where do I securely store the password? And I guess it is best to store a hash of the password - how to do that?
Storing the password (or hash) in a easily readable XML file can't be the best option? One can then just open the XML file and delete the hash string, then when on app load there will be no password, right?
Best regards