“Installer BCrypt” Réponses codées

Installer BCrypt

>> npm install bcrypt

const bcrypt = require('bcrypt');
Ham-Solo

Installer BCrypt

npm install bcryptjs
Clever Crane

Installer BCrypt

npm install bcrypt
Clever Crane

npm bcrypt

const bcrypt = require('bcrypt');
const saltRounds = 10;

bcrypt.hash(myPlaintextPassword, saltRounds, function(err, hash) {
    // Store hash in your password DB.
});

// Load hash from your password DB.
bcrypt.compare(myPlaintextPassword, hash, function(err, result) {
    // result == true
});
Udituk

bcrypt

>>> import bcrypt
>>> password = b"super secret password"
>>> # Hash a password for the first time, with a randomly-generated salt
>>> hashed = bcrypt.hashpw(password, bcrypt.gensalt())
>>> # Check that an unhashed password matches one that has previously been
>>> # hashed
>>> if bcrypt.checkpw(password, hashed):
...     print("It Matches!")
... else:
...     print("It Does not Match :(")
Moses

Réponses similaires à “Installer BCrypt”

Questions similaires à “Installer BCrypt”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code