In php, we have a password_hash function to create a password hash. Do we have an equivalent for this function in livecode?
php
password_hash
Password has function here
According to http://php.net/manual/en/function.password-hash.php PHP's password_hash function uses bcrypt as the underlying algorithm.
I don't think LiveCode has bcrypt support natively, so you may need to install an external into your stack or call out to the command line using the shell function to get a decent hash.
shell
Copyright © 2021 Jogjafile Inc.
According to http://php.net/manual/en/function.password-hash.php PHP's
password_hash
function uses bcrypt as the underlying algorithm.I don't think LiveCode has bcrypt support natively, so you may need to install an external into your stack or call out to the command line using the
shell
function to get a decent hash.