I'm facing a situation that need to verify password created via PHP password_hash
method on nodejs server.
Does nodejs
have an available package that equivalent to password_hash
and password_verify
? Thank you.
I'm facing a situation that need to verify password created via PHP password_hash
method on nodejs server.
Does nodejs
have an available package that equivalent to password_hash
and password_verify
? Thank you.
No, you will have to make use of one of the many Bcrypt libraries for Node.js.
P.S.: You're basically duplicating another user's question (Verify password hash in nodejs which was generated in php).
In my case i created password in php like below
In Node if i want to verify that password than ...
Hope it will help you .....