bcrypt.js icon indicating copy to clipboard operation
bcrypt.js copied to clipboard

Is it possible to install on the cordova?

Open tiagocaus opened this issue 5 years ago • 1 comments

I'm creating an app with cord. I need to verify a password that was generated by the php password_hash. How do you install it on the cordova?

tiagocaus avatar Sep 08 '20 12:09 tiagocaus

Per security practices, you should not send the real password nor its hash to the client side. Send the user-entered plain password through an SSL connection to the server, and do the validation there.

tolgaatam avatar Jun 03 '21 21:06 tolgaatam