I have an App written by react-native and in back-end I used firebase,
and I have I sign-up screen with some fields and save it very well BUT I have a password field and i want to save it in DB to use it when the user wants to update his password or something,
SO, it's not a safe idea to save a password as a plaintext!
so how can I save passwords in the best safe way?
I think it's not a good idea to hash passwords on the client-side then save it into DB So what you think?