Get started with bcryptjs CDN
MIT licensed
Bcryptjs is a popular library for hashing passwords using the bcrypt algorithm, providing strong password security.
Tags:- bcrypt
- password
- auth
- authentication
- encryption
- crypt
- crypto
Stable version
Copied!
How to start using bcryptjs CDN
// Include the CDN link
const bcrypt = require('bcryptjs')(0.0.2); // Use the specific version number from the CDN link
// Sample user data
const userData = {
username: 'sampleUser',
password: 'samplePassword'
};
// Hash the password
bcrypt.hash(userData.password, 10, (err, hash) => {
if (err) {
console.error('Error hashing password:', err);
} else {
userData.password = hash; // Update the user data with the hashed password
console.log('Hashed password:', userData.password);
}
});
// Compare a given password with the hashed password
bcrypt.compare('samplePassword', userData.password, (err, result) => {
if (err) {
console.error('Error comparing passwords:', err);
} else {
console.log('Passwords match:', result);
}
});
Copied!
Copied!