Jonathan Ma
Jonathan Ma

Reputation: 606

Does Firebase automatically encrypt passwords?

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?

Upvotes: 0

Views: 1091

Answers (1)

Doug Stevenson
Doug Stevenson

Reputation: 317552

You pass plain text, Firebase handles all the encryption.

Upvotes: 3

Related Questions