function _password_itoa64

Returns a string for mapping an int to the corresponding base 64 character.

3 calls to _password_itoa64()
_password_base64_encode in drupal/includes/password.inc
Encodes bytes into printable base 64 using the *nix standard from crypt().
_password_generate_salt in drupal/includes/password.inc
Generates a random base 64-encoded salt prefixed with settings for the hash.
_password_get_count_log2 in drupal/includes/password.inc
Parse the log2 iteration count from a stored hash or setting string.

File

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

Code

function _password_itoa64() {
  return './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
}