nsensfel / tacticians-server

Server for Tacticians Online, written in Erlang.
https://tacticians.online
Apache License 2.0
1 stars 0 forks source link

Insufficient password protection #5

Open nsensfel opened 5 years ago

nsensfel commented 5 years ago

From further reading, turns out the current {salt(crypto:strong_rand_bytes(128)), hash(sha384)} hashing solution should not be considered secure. Problem is, switching to something like bcrypt (or PBKDF2) likely requires the addition of a third party library (which, in itself, is a security risk).