67 $value = ord($input[$i++]);
68 $output .= $itoa64[$value & 63];
70 $value |= ord($input[$i]) << 8;
72 $output .= $itoa64[$value >> 6 & 63];
77 $value |= ord($input[$i]) << 16;
79 $output .= $itoa64[$value >> 12 & 63];
83 $output .= $itoa64[$value >> 18 & 63];
84 }
while ($i < $count);
97 return (
int)ceil($byteLength * 8 / 6);
base64Encode($input, $count)
getLengthBase64FromBytes($byteLength)
applySettingsToSalt($salt)