function user_password

7.x user.module user_password($length = 10)
6.x user.module user_password($length = 10)

Generate a random alphanumeric password.

4 calls to user_password()
openid_authentication in drupal-6.x/modules/openid/openid.module
Authenticate a user or attempt registration.
openid_form_alter in drupal-6.x/modules/openid/openid.module
Implementation of hook_form_alter : adds OpenID login to the login forms.
user_external_login_register in drupal-6.x/modules/user/user.module
Helper function for authentication modules. Either login in or registers the current user, based on username. Either way, the global $user object is populated based on $name.
user_register_submit in drupal-6.x/modules/user/user.module
Submit handler for the user registration form.

File

drupal-6.x/modules/user/user.module, line 465
Enables the user registration and login system.

Code

function user_password($length = 10) {
  // This variable contains the list of allowable characters for the
  // password. Note that the number 0 and the letter 'O' have been
  // removed to avoid confusion between the two. The same is true
  // of 'I', 1, and 'l'.
  $allowable_characters = 'abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789';

  // Zero-based count of characters in the allowable list:
  $len = strlen($allowable_characters) - 1;

  // Declare the password as a blank string.
  $pass = '';

  // Loop the number of times specified by $length.
  for ($i = 0; $i < $length; $i++) {
    do {
      // Find a secure random number within the range needed.
      $index = ord(drupal_random_bytes(1));
    } while ($index > $len);

    // Each iteration, pick a random character from the
    // allowable string and append it to the password:
    $pass .= $allowable_characters[$index];
  }
  return $pass;
}