function LegacyPasswordHashingTest::testEmptyHash
Tests password validation when the hash is NULL.
@covers ::check
      
    
File
- 
              core/modules/ phpass/ tests/ src/ Unit/ LegacyPasswordHashingTest.php, line 124 
Class
- LegacyPasswordHashingTest
- Unit tests for password hashing API.
Namespace
Drupal\Tests\phpass\UnitCode
public function testEmptyHash() : void {
  $this->assertFalse($this->passwordHasher
    ->check($this->password, NULL));
  $this->assertFalse($this->passwordHasher
    ->check($this->password, ''));
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
