“NPM Bcrypt” Kod odpowiedzi

Zainstaluj bcrypt

>> npm install bcrypt

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

Zainstaluj bcrypt

npm install bcryptjs
Clever Crane

Bcryptjs

npm i bcryptjs

# yarn
yarn add bcryptjs
Salo Hopeless

Zainstaluj 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 NPM

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

Odpowiedzi podobne do “NPM Bcrypt”

Pytania podobne do “NPM Bcrypt”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu