Home
last modified time | relevance | path

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

/plugin/authwordpress/
H A Dclass-phpass.php37 var $itoa64; variable in PasswordHash
47 $this->itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
94 $output .= $this->itoa64[$value & 0x3f];
97 $output .= $this->itoa64[($value >> 6) & 0x3f];
102 $output .= $this->itoa64[($value >> 12) & 0x3f];
105 $output .= $this->itoa64[($value >> 18) & 0x3f];
114 $output .= $this->itoa64[min($this->iteration_count_log2 +
132 $count_log2 = strpos($this->itoa64, $setting[3]);
174 $output .= $this->itoa64[$count & 0x3f];
175 $output .= $this->itoa64[(
[all...]
/plugin/authdrupal8/
H A 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]);