|
|
|
|
|
by CWuestefeld
3667 days ago
|
|
Rather than expecting the password hash library to store something into your application DB, you should be managing the access to that DB yourself. In our case, we use an immutable attribute of each user as their hash. This might be an internal identifier, or the timestamp on which their account was created, or something like that. |
|
You do manage it yourself. Password hashing library doesn't access your database, it produces a string that you store, which includes salt and password hash.
In our case, we use an immutable attribute of each user as their hash
What? You really need to talk to security-competent people.