简体   繁体   中英

Password isn't getting hashed by brcypt module

I am hashing password using nodejs "bcrypt" module. this is my hashing function...

在此处输入图片说明 and here i am calling my function 在此处输入图片说明

But in databases password is not saving. In databases field is empty every time when i register. How can i fix it?

Here is database entry record 在此处输入图片说明

You have nothing saved inside your database because you choose to use the asynchronous bcrypt hash function.

It should work if you use the synchronous one. ( replace your bcrypt hash by this one)

let hash = bcrypt.hashSync('password', 10);
return hash;

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