I've got my users exported the in CLI:
firebase auth:export my_users.json
The passwords in the exported file should be hashed with SCRYPT, because as the documentation states:
auth:export command only exports passwords hashed using the scrypt algorithm, which is used by the Firebase backend. Account records with passwords hashed using other algorithms are exported with empty passwordHash and salt fields. Projects might have passwords hashed with other algorithms after importing user records from a file, since passwords are only re-hashed with scrypt when an imported user signs in for the first time
My hash-key and salt fields are not empty in the result. Also, I know that all my users signed in at least once.
Now, when I try to import my_users.json:
firebase auth:import --hash-algo=SCRYPT --rounds=1 my_users.json
I get the following error:
Must provide hash key(base64 encoded) for hash algorithm SCRYPT
But what should I set --hash-key to, since the auth:export command did not take any parameters? ...
Thanks in advance