Lines Matching full:clear
119 * @param string $pass the clear text password
133 $userdata['clear'] = $pass;
146 // clear text password in the database O_o
147 return ($pass === $userdata['clear']);
194 * @param string $clear
200 public function createUser($user, $clear, $name, $mail, $grps = null) argument
213 $hash = auth_cryptPassword($clear);
214 …$userdata = ['user' => $user, 'clear' => $clear, 'hash' => $hash, 'name' => $name, 'mail' => $mail…
256 * @param array $changes array of field/value pairs to be changed (password will be clear text)
281 $params['clear'] = $changes['pass'];
492 … if (!isset($data['hash']) && !isset($data['clear']) && !$this->checkConfig(['check-pass'])) {
493 $this->debugMsg("Statement did not return 'clear' or 'hash' attribute", -1, __LINE__);