function PhpassHashedPassword::base64Encode
Same name in other branches
- 9 core/lib/Drupal/Core/Password/PhpassHashedPassword.php \Drupal\Core\Password\PhpassHashedPassword::base64Encode()
Encodes bytes into printable base 64 using the *nix standard from crypt().
Parameters
string $input: The string containing bytes to encode.
int $count: The number of characters (bytes) to encode.
Return value
string Encoded string.
2 calls to PhpassHashedPassword::base64Encode()
- PhpassHashedPassword::crypt in core/
lib/ Drupal/ Core/ Password/ PhpassHashedPassword.php - Hash a password using a secure stretched hash.
- PhpassHashedPassword::generateSalt in core/
lib/ Drupal/ Core/ Password/ PhpassHashedPassword.php - Generates a random base 64-encoded salt prefixed with hash settings.
File
-
core/
lib/ Drupal/ Core/ Password/ PhpassHashedPassword.php, line 68
Class
- PhpassHashedPassword
- Secure password hashing functions based on the Portable PHP password hashing framework.
Namespace
Drupal\Core\PasswordCode
protected function base64Encode($input, $count) {
$output = '';
$i = 0;
do {
$value = ord($input[$i++]);
$output .= static::$ITOA64[$value & 0x3f];
if ($i < $count) {
$value |= ord($input[$i]) << 8;
}
$output .= static::$ITOA64[$value >> 6 & 0x3f];
if ($i++ >= $count) {
break;
}
if ($i < $count) {
$value |= ord($input[$i]) << 16;
}
$output .= static::$ITOA64[$value >> 12 & 0x3f];
if ($i++ >= $count) {
break;
}
$output .= static::$ITOA64[$value >> 18 & 0x3f];
} while ($i < $count);
return $output;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.