user6918687
user6918687

Reputation: 11

Does firebase handle email/pass authentication encryption?

I am thinking of using Firebase email/password authentication and I was wondering does Firebase handle all the encryption? Esecially from client to server?

Upvotes: 0

Views: 302

Answers (2)

Alexandre Martin
Alexandre Martin

Reputation: 1502

Yes it is, like described below

Firebase - authentication

Upvotes: 0

Frank van Puffelen
Frank van Puffelen

Reputation: 599131

Credentials are sent from the Firebase SDK in your app/web page to the server over an SSL connection. So they're encrypted on a lower level already.

Upvotes: 1

Related Questions