You are here

function _password_get_count_log2 in Acquia Connector 6.2

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

2 calls to _password_get_count_log2()
user_needs_new_hash in acquia_agent/password.inc
Check whether a user's hashed password needs to be replaced with a new hash.
_password_crypt in acquia_agent/password.inc
Hash a password using a secure stretched hash.

File

acquia_agent/password.inc, line 170
Secure password hashing functions for user authentication.

Code

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