“Bcrypt vergleiche Hash und Passwort” Code-Antworten

bcrypt vergleichen

import bcrypt from 'bcryptjs'

export const matchPassword = async (enteredpassword, oldPassword) => {
  return await bcrypt.compare(enteredpassword, oldPassword)
}
Blue Booby

Bcrypt vergleiche Hash und Passwort


	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

Vergleichen Sie das Passwort bcrypt

//password: the value passed from the password form input
//hash: the value requested from the database. This is the "encrypted" password
	bcrypt.compare(password, hash).then(validPass => {
		// validPass returns true or false
    }).catch(err => console.log('error: ' + err));
Enchanting Eland

Bcrypt im Vergleich zu Hash

// password: the value passed from the password form input
// hash: the value requested from the database. This is the "encrypted" password
bcrypt.compare(password, hash).then(validPass => {
	// validPass returns true or false
    }.catch(err => console.log('error: ' + err));
Ham-Solo

Ähnliche Antworten wie “Bcrypt vergleiche Hash und Passwort”

Fragen ähnlich wie “Bcrypt vergleiche Hash und Passwort”

Weitere verwandte Antworten zu “Bcrypt vergleiche Hash und Passwort” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen