function PasswordHashingTest::testLongPassword
Same name in other branches
- 7.x modules/simpletest/tests/password.test \PasswordHashingTest::testLongPassword()
- 8.9.x core/tests/Drupal/Tests/Core/Password/PasswordHashingTest.php \Drupal\Tests\Core\Password\PasswordHashingTest::testLongPassword()
Verifies that passwords longer than 512 bytes are not hashed.
@covers ::crypt
@dataProvider providerLongPasswords
File
-
core/
tests/ Drupal/ Tests/ Core/ Password/ PasswordHashingTest.php, line 137
Class
- PasswordHashingTest
- Unit tests for password hashing API.
Namespace
Drupal\Tests\Core\PasswordCode
public function testLongPassword($password, $allowed) {
$hashed_password = $this->passwordHasher
->hash($password);
if ($allowed) {
$this->assertNotFalse($hashed_password);
}
else {
$this->assertFalse($hashed_password);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.