Home > Net >  Is hashing and salting required for signing up an user at firebase
Is hashing and salting required for signing up an user at firebase

Time:11-20

While signing up an user to firebase authentication, does firebase hash the password? Or do we need to first hash it manually by ourselves?

CodePudding user response:

Firebase does hash passwords using a modified version of scrypt. More details can be found here.

  • Related