Home
last modified time | relevance | path

Searched refs:itoa64 (Results 1 – 2 of 2) sorted by relevance

/plugin/authwordpress/
Dclass-phpass.php45 var $itoa64; variable in PasswordHash
52 $this->itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
100 $output .= $this->itoa64[$value & 0x3f];
104 $output .= $this->itoa64[($value >> 6) & 0x3f];
111 $output .= $this->itoa64[($value >> 12) & 0x3f];
115 $output .= $this->itoa64[($value >> 18) & 0x3f];
124 $output .= $this->itoa64[min($this->iteration_count_log2 + 5,
144 $count_log2 = strpos($this->itoa64, $setting[3]);
183 $itoa64 = './ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
193 $output .= $itoa64[$c1 >> 2];
[all …]
/plugin/authdrupal8/
Dpassword.inc51 $itoa64 = _password_itoa64();
54 $output .= $itoa64[$value & 0x3f];
58 $output .= $itoa64[($value >> 6) & 0x3f];
65 $output .= $itoa64[($value >> 12) & 0x3f];
69 $output .= $itoa64[($value >> 18) & 0x3f];
95 $itoa64 = _password_itoa64();
96 $output .= $itoa64[$count_log2];
187 $itoa64 = _password_itoa64();
188 return strpos($itoa64, $setting[3]);