sidharth bhasin
sidharth bhasin

Reputation: 21

Is firebase JavaScript SDK secure over network?

Setting up Firebase Web JavaScript project. Firebase Authentication allows to authenticate users. But are Firebase SDK methods secure over various networks/routers ?

I am new to Firebase. I am trying to understand different functions/features provided by Firebase. For example, Firebase Authentication (Guide) helps to login/logout and much more a user. In one of its methods (Guide) I can see it uses input username/password: firebase.auth().createUserWithEmailAndPassword(email, password) to check if credentials are correct. So, when this information moves over networks to back end instances, is this secure ?

firebase.auth().createUserWithEmailAndPassword(email, password).catch(function(error) {
  // Handle Errors here.
  var errorCode = error.code;
  var errorMessage = error.message;
  // ...
});

It would be great if someone can share how the data is moved across with firebase js sdks and if it's secure ?

Upvotes: 0

Views: 202

Answers (1)

Doug Stevenson
Doug Stevenson

Reputation: 317392

All traffic to and from Firebase services through the provided SDKs is encrypted in transit. It can't be modified or decrypted, as is the case for any communications using SSL, which is a very common global internet standard for secure communications.

Upvotes: 2

Related Questions