generatePasswordHash static method
Generates a password hash from a users password and email. This value can safely be stored in the database without the risk of exposing passwords.
Implementation
static Future<String> generatePasswordHash(String password) async =>
AuthConfig.current.passwordHashGenerator(
password,
);