function _password_get_count_log2

Parse the log2 iteration count from a stored hash or setting string.

4 calls to _password_get_count_log2()
PasswordHashingTest::testPasswordHashing in drupal/modules/simpletest/tests/password.test
Test password hashing.
UserLoginTestCase::testPasswordRehashOnLogin in drupal/modules/user/user.test
Test that user password is re-hashed upon login after changing $count_log2.
user_needs_new_hash in drupal/includes/password.inc
Check whether a user's hashed password needs to be replaced with a new hash.
_password_crypt in drupal/includes/password.inc
Hash a password using a secure stretched hash.

File

drupal/includes/password.inc, line 194
Secure password hashing functions for user authentication.

Code

function _password_get_count_log2($setting) {
  $itoa64 = _password_itoa64();
  return strpos($itoa64, $setting[3]);
}