Hello everyone.
I was wondering if it's secure to store hashes of passwords with the usernames on a database, perhaps with bcrypt.
My goal is to have a login, where the user enters name and password.
His password is then converted via bcrypt and then compared with the information stored on the database, with typescript.
Is this safe, or could someone from the client side through this find out other people's passwords?