🔑 How do we store passwords?
Passwords are stored in the database using the standard PHP password_hash using the PASSWORD_DEFAULT
algorithm (currently bcrypt).
This function will generate a strong one-way hash.
Passwords are stored in the database using the standard PHP password_hash using the PASSWORD_DEFAULT
algorithm (currently bcrypt).
This function will generate a strong one-way hash.