public PhpassHashedPassword::getCountLog2($setting)
Parses the log2 iteration count from a stored hash or setting string.
Parameters
string $setting: An existing hash or the output of $this->generateSalt(). Must be at least 12 characters (the settings and salt).
Return value
int The log2 iteration count.
File
- core/lib/Drupal/Core/Password/PhpassHashedPassword.php, line 207
Class
- PhpassHashedPassword
- Secure password hashing functions based on the Portable PHP password hashing framework.
Namespace
Drupal\Core\Password
Code
public function getCountLog2($setting) { return strpos(static::$ITOA64, $setting[3]); }
Please login to continue.