Neos\Flow\Security\Cryptography\PasswordHashingStrategyInterface::hashPassword PHP Method

hashPassword() public method

Hash a password for storage
public hashPassword ( string $password, string $staticSalt = null ) : string
$password string Cleartext password that will be hashed
$staticSalt string Optional static salt that will not be stored in the hashed password
return string The hashed password with dynamic salt (if used)
    public function hashPassword($password, $staticSalt = null);
PasswordHashingStrategyInterface