bcrypt.js
bcrypt.js copied to clipboard
Is it possible to install on the cordova?
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?
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.