Does Firebase automatically encrypt passwords?

两盒软妹~` 提交于 2021-02-05 10:37:47

问题


Does Firebase automatically encrypt plain text passwords when creating a new user using the signUp() method? Also, does it automatically hash/encrypt plain text passwords with the signIn() method:

firebase.auth().createUserWithEmailAndPassword(email, password).catch(function(error) {}

...

firebase.auth().signInWithEmailAndPassword(email, password).catch(function(error) {}

Would password be plain text or already hashed?


回答1:


You pass plain text, Firebase handles all the encryption.



来源:https://stackoverflow.com/questions/58053508/does-firebase-automatically-encrypt-passwords

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!