Hello!
I’m working on migrating users from Firebase Auth into an Auth0 custom database. I’m able to import a test user, but I’m not able to actually log in as that user on the Auth0 side.
Here’s a truncated version of the import.json file I’m using:
"email": "test@test.com",
"email_verified": false,
"custom_password_hash": {
"algorithm": "scrypt",
"hash": {
"value": {hashed_password},
"encoding": "base64"
},
"salt": {
"value": {salt},
"encoding": "base64",
"position": "suffix"
},
"keylen": 32
}
}
Wondering if there are additional settings I’m missing, or if this is even possible to do, since it appears that Firebase uses a forked version of scrypt
to do its hashing.
Any help is much appreciated! Thanks all!