Reputation: 679
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
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