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']);
193 * @param string $clear
199 public function createUser($user, $clear, $name, $mail, $grps = null) argument
212 $hash = auth_cryptPassword($clear);
213 …$userdata = ['user' => $user, 'clear' => $clear, 'hash' => $hash, 'name' => $name, 'mail' => $mail…
255 * @param array $changes array of field/value pairs to be changed (password will be clear text)
280 $params['clear'] = $changes['pass'];
491 … if (!isset($data['hash']) && !isset($data['clear']) && !$this->checkConfig(['check-pass'])) {
492 $this->debugMsg("Statement did not return 'clear' or 'hash' attribute", -1, __LINE__);