E
E
Ernest Farukshin2020-01-25 22:44:00
css
Ernest Farukshin, 2020-01-25 22:44:00

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

3 answer(s)
I
igumenov, 2019-04-26
@igumenov

https://codepen.io/tjvantoll/pen/JEKIu

V
Vitaly Kuznetsov, 2019-04-26
@vitaly44

https://github.com/jmosbech/StickyTableHeaders this plugin helped me a lot in my time.

P
Pavel Talaiko, 2020-01-25
@Ernest3

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 question

Ask a Question

731 491 924 answers to any question