daniel-bell / hush

A client-side encrypted chat application
MIT License
0 stars 0 forks source link

Encrypt passwords before sending to the server #26

Open daniel-bell opened 10 years ago

daniel-bell commented 10 years ago

Encrypting the password text with PBKDF2 (a few hundred rounds) before transmission to the server would increase trust and lay the foundations for private key generation from the user's password.

This wont replace the existing bcrypt hashing; that will still be done server-side, prior to DB storage or comparison.