1.20.x password.inc | _password_itoa64() |
Returns a string for mapping an int to the corresponding base 64 character.
File
- includes/
password.inc, line 41 - Secure password hashing functions for user authentication.
Code
function _password_itoa64() {
return './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
}