“Bcrypt nodejs hash пароль” Ответ

Bcrypt nodejs hash пароль

 bcrypt.genSalt(saltRounds, (err, salt) => {
    bcrypt.hash(yourPassword, salt, (err, hash) => {
       console.log(salt + hash)
    });
});
Uptight Unicorn

bcrypt сравнивайте хэш и пароль


	var bcrypt = dcodeIO.bcrypt; 

    /** One way, can't decrypt but can compare */
    var salt = bcrypt.genSaltSync(10);

    /** Encrypt password */
    bcrypt.hash('anypassword', salt, (err, res) => {
        console.log('hash', res)
        hash = res
        compare(hash)
    });

    /** Compare stored password with new encrypted password */
    function compare(encrypted) {
        bcrypt.compare('aboveusedpassword', encrypted, (err, res) => {
            // res == true or res == false
            console.log('Compared result', res, hash) 
        })
    }

// If u want do the same with NodeJS use this:
/*		var bcrypt = require('bcryptjs')	*/
Sticky Pingu

Ответы похожие на “Bcrypt nodejs hash пароль”

Вопросы похожие на “Bcrypt nodejs hash пароль”

Больше похожих ответов на “Bcrypt nodejs hash пароль” по JavaScript

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

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