dcodeIO / bcrypt.js

Optimized bcrypt in plain JavaScript with zero dependencies.
Other
3.47k stars 264 forks source link

Is it possible to install on the cordova? #120

Open tiagocaus opened 3 years ago

tiagocaus commented 3 years ago

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?

tolgaatam commented 3 years ago

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.