Lines Matching refs:password
131 function crypt_private($password, $setting) argument
162 $hash = md5($salt . $password, TRUE);
164 $hash = md5($hash . $password, TRUE);
214 function HashPassword($password) argument
216 if ( strlen( $password ) > 4096 ) {
225 crypt($password, $this->gensalt_blowfish($random));
235 $this->crypt_private($password,
247 function CheckPassword($password, $stored_hash) argument
249 if ( strlen( $password ) > 4096 ) {
253 $hash = $this->crypt_private($password, $stored_hash);
255 $hash = crypt($password, $stored_hash);