Lines Matching defs:clear
119 * @param string $pass the clear text password
130 $userdata['clear'] = $pass;
143 // clear text password in the database O_o
144 return ($pass === $userdata['clear']);
190 * @param string $clear
196 public function createUser($user, $clear, $name, $mail, $grps = null)
209 $hash = auth_cryptPassword($clear);
210 $userdata = ['user' => $user, 'clear' => $clear, 'hash' => $hash, 'name' => $name, 'mail' => $mail];
252 * @param array $changes array of field/value pairs to be changed (password will be clear text)
277 $params['clear'] = $changes['pass'];
488 if (!isset($data['hash']) && !isset($data['clear']) && !$this->checkConfig(['check-pass'])) {
489 $this->debugMsg("Statement did not return 'clear' or 'hash' attribute", -1, __LINE__);