function _password_itoa64
Search API
| 7.x password.inc | _password_itoa64() | 
| 6.x password.inc | _password_itoa64() | 
| 5.x password.inc | _password_itoa64() | 
Returns a string for mapping an int to the corresponding base 64 character.
3 calls to _password_itoa64()
- _password_base64_encode in includes/password.inc 
- Encodes bytes into printable base 64 using the *nix standard from crypt().
- _password_generate_salt in includes/password.inc 
- Generates a random base 64-encoded salt prefixed with settings for the hash.
- _password_get_count_log2 in includes/password.inc 
- Parse the log2 iteration count from a stored hash or setting string.
File
- includes/password.inc, line 51 
- Secure password hashing functions for user authentication.
Code
function _password_itoa64() {
  return './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
}
