Flutter Firebase signInWithEmailAndPassword cryptography
问题 I'm using Flutter + firebase auth to authenticate my users with email and password using this syntax: void signIn({@required String email,@required String pass}) FirebaseAuth.instance.signInWithEmailAndPassword(email: email, password: pass)... The username and password are Strings, plain text My question is, do I have to worry about password security? does the password string goes to the network encrypted? 回答1: All communication between the Firebase Authentication client and the backend