Issue #2284883 by AohRveTPV: Fix typo in code comment in PhpassHashedPassword class

8.0.x
Jennifer Hodgdon 2014-06-13 15:02:59 -07:00
parent a735308ce5
commit f742b6fa68
1 changed files with 2 additions and 2 deletions

View File

@ -166,8 +166,8 @@ class PhpassHashedPassword implements PasswordInterface {
}
$count_log2 = $this->getCountLog2($setting);
// Stored hashes may have been crypted with any iteration count. However we
// do not allow applying the algorithm for unreasonable low and heigh
// values respectively.
// do not allow applying the algorithm for unreasonable low and high values
// respectively.
if ($count_log2 != $this->enforceLog2Boundaries($count_log2)) {
return FALSE;
}