Harsh Singhmoreprisma.hashnode.dev·Nov 7, 2024Understanding bcrypt: How Salt and Hashing Secure PasswordsThe bcrypt library in Node.js provides a simple API to hash passwords, generate salts, and compare hashed data. It has two major features: Salting: A salt is a random string added to the password before hashing. This ensures that even if two users ha...Discuss·1 likebcryptjs
AARYAN BAJAJaaryan-bajaj-learnings.hashnode.dev·May 27, 2024How Bcrypt.js Safeguards Your Passwords Like Fort KnoxIntroduction In today's digital age, where data breaches are becoming increasingly common, the security of your passwords is more critical than ever. Imagine your password as the key to your most prized possessions, and hackers as the relentless bu...Discussprotect user data
Shreyas Chalihashreyas-chaliha.hashnode.dev·Feb 6, 2023Using bcryptjs with Node.jsThis article describes how we can use the bcryptjs library with node.js to hash a password. It is a way to implement security measures in Node.js What is bcryptjs?Bcryptjs is a password-hashing javascript library that uses a slow hash function for ad...DiscussNode.js
Victor Ukokgeniesmind.hashnode.dev·Oct 29, 2022Hashing and comparing hashed passwords with bcryptjs (synchronous method)Introduction Your passwords are not stored as plain text on any website you've signed up for. The reason for this is that if someone gets access to the database, they will find it difficult to know the passwords of any account they have seen on the d...Discuss·81 readsbcryptjs