简体   繁体   中英

NodeJS - Passport password appears as plain text in DB

Probably I am missing something here.

Got an Express server with MongoDB and i'm using passport to authenticate. I'm using one of the standard code example to signup and it seems ok, but I can see the password I type in the password field (plain text) in my DB.
I expected it to be encrypted...

Am i doing something wrong?

You have to hash the password yourself. Here is how to do it using brcypt:

function hashPassword (password) {
    return bcrypt.hashSync(password, bcrypt.genSaltSync());
}

So before you save your user to the DB simply invoke that function like so:

 user.password = hashPassword(thepassword);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM