How to export user passwords from auth0

How can I export the user password hash from auth0 and store in my external db and use it for authentication? I know that password isnt stored in plain text but if i want to export will i get the hashing algorithm used so that i can verify using hash?

Hi @rkreddy2699,

Welcome to the Auth0 Community!

If you require exporting your user passwords from Auth0, please request this information by opening a support ticket.

See our Export Data and Data Export and Transfer Policy documentation.

Thanks,
Rueben

Hey @rueben.tiow ,

thanks for directing me on how to export passwords.

I also want to know if I export the passwords (hash), whether I will get the info on how to compare plain text passwords with the exported hash? (basically how the hash was created and all the keys used in the process.) There is no info on this in the docs.

1 Like

Hey its been 2 days, can I get some info on this

1 Like

Hi @rkreddy2699,

Thanks for following up and I’m sorry for the late response.

The password hashes uses the bcrypt hashing algorithm. You can compare an incoming plain-text password with the hash to see if they match using any popular bcrypt library available for your technology of choice.

Thanks,
Rueben

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.