Migrating Django's BCryptSHA256PasswordHasher Passwords

Hi, I hope you are all well and safe.

I’m trying to migrate my users to auth0 via User Import / Export Extension. On our legacy database, I used Django’s BCryptSHA256PasswordHasher which is basically bcrypt(sha256(password)).

I notice that bcrypt in itself is supported by Auth0 as a custom password hash algorithm, and sha256 in itself is supported as well. But I am wondering, is bcrypt(sha256(password)) also supported?

If it is not supported, is there other workarounds so that users don’t have to reset their passwords the first time they log in via auth0?

Thank you

@dw-bloom did you ever find a workaround for this? I’m in the same boat.