user655561
user655561

Reputation: 679

Encryption of data between clients and firebase real time database

I am wondering is there any encryption mechanism that protects the data transferred between the real time data base of firebase and the users, to avoid potential Men In the Middle attack ?

Upvotes: 0

Views: 2613

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 598837

All traffic between the Firebase Database servers and your Android app goes over encrypted connections. You can easily see this when you look at the URL that is used to connect to your database: https://<project-name>.firebaseio.com.

Upvotes: 5

Related Questions