“NPM Bcrypt” Ответ

Установите Bcrypt

>> npm install bcrypt

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

Установите Bcrypt

npm install bcryptjs
Clever Crane

bcryptjs

npm i bcryptjs

# yarn
yarn add bcryptjs
Salo Hopeless

Установите 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

Ответы похожие на “NPM Bcrypt”

Вопросы похожие на “NPM Bcrypt”

Смотреть популярные ответы по языку

Смотреть другие языки программирования