Is storing password hashed in a JSON file safe?

Laphatize
07/07/19, 3:22 AM
Hello, internet. I'm using something called bcrypt to hash passwords. The issue is that I don't want to use something fancy to store all these hashes. I need to store these hashes to compare the password the user entered with the hash.

Upvotes0 Downvotes0 Link

1 Comment


Laphatize
07/07/19, 3:22 AM
Response from herronjo via discord: Regardless, yes. I store password hashes in a JSON file along with some other user information. Just make sure you also salt the hash, and make sure the hashes aren't publicly facing.

Upvotes0 Downvotes0 Link