1 password.inc _password_itoa64()

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

File

core/includes/password.inc, line 40
Secure password hashing functions for user authentication.

Code

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