Lines Matching defs:input
88 function encode64($input, $count)
93 $value = ord($input[$i++]);
96 $value |= ord($input[$i]) << 8;
101 $value |= ord($input[$i]) << 16;
111 function gensalt_private($input)
116 $output .= $this->encode64($input, 6);
166 function gensalt_extended($input)
179 $output .= $this->encode64($input, 3);
184 function gensalt_blowfish($input)
203 $c1 = ord($input[$i++]);
211 $c2 = ord($input[$i++]);
216 $c2 = ord($input[$i++]);