Neos\Flow\Security\Cryptography\SaltedMd5HashingStrategy::validatePassword PHP Метод

validatePassword() публичный Метод

Validate a hashed password using salted MD5
public validatePassword ( string $password, string $hashedPasswordAndSalt, string $staticSalt = null ) : boolean
$password string The cleartext password
$hashedPasswordAndSalt string The hashed password with salt
$staticSalt string ignored parameter
Результат boolean TRUE if the given password matches the hashed password
    public function validatePassword($password, $hashedPasswordAndSalt, $staticSalt = null)
    {
        return self::validateSaltedMd5($password, $hashedPasswordAndSalt);
    }