Наследование: implements Neos\Flow\Security\Cryptography\PasswordHashingStrategyInterface
 /**
  * @test
  */
 public function validatePasswordWithInvalidHashFails()
 {
     $strategy = new BCryptHashingStrategy(10);
     $this->assertFalse($strategy->validatePassword('password', ''));
     $this->assertFalse($strategy->validatePassword('password', '$1$abc'));
     $this->assertFalse($strategy->validatePassword('password', '$2x$01$012345678901234567890123456789'));
 }