I am creating a simplified lead and call management system for a friend's small business.
I would like to know the best practices for hardening password storage and verification using PHP 7.4 and MySQL 7.4.30.
I would like something very secure as some of the data I am storing is subject to HIPPA rules for data storage.
The password hash function creates hashes based on the old bcrypt standards which can be easily broken when one has adequate CPU/GPU resources.
Therefore, I need more robust solutions.