Answer the question
In order to leave comments, you need to log in
What is the best way to store passwords on the client's computer?
What is the best way to store passwords on the client's computer?
Answer the question
In order to leave comments, you need to log in
https://github.com/jmosbech/StickyTableHeaders this plugin helped me a lot in my time.
If you have a server, then look towards JWT. Based on the password and salt (keyword), generate a token (with a keyword that only the server knows), which will allow you to get information about the user of your system for this token, bind the current token to the user (if desired, you can make the token expiration date).
1. Do not store passwords in clear text.
2. Do not store passwords on the user side (if there is a server).
3. Mix the password with the key (your) application word (add a salt) and encrypt.
4. It is advisable to use a password only for logging in, and when receiving a token, use only it.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question