Hi, does anyone know if it’s possible to bulk import users with a custom_password_hash from the MD5 schema of the posix crypt(1) function?
The password hashes I have look like…
$1$saltsalt$qjXMvbEw8oaL.CzflDtaK/
…and were created by something like eg…
echo password | openssl passwd -1 -salt 'saltsalt' -stdin
…or…
php -r "print (crypt('password', '\$1\$saltsalt'));"
I can’t find this schema in the docs, but it’s reasonably standard, at least in older systems, so I was wondering whether I was missing something, or maybe whether there’s an ETA for auth0 supporting it.