Home
last modified time | relevance | path

Searched refs:pass (Results 1 – 20 of 20) sorted by last modified time

/dokuwiki/lib/plugins/authpdo/
H A Dauth.php48 conf_decodeString($this->getConf('pass')),
79 ['select-user', 'select-user-groups', 'update-user-pass']
119 * @param string $pass the clear text password
122 public function checkPass($user, $pass)
129 if ($this->checkConfig(['check-pass'])) {
130 $userdata['clear'] = $pass;
131 $userdata['hash'] = auth_cryptPassword($pass);
132 $result = $this->query($this->getConf('check-pass'), $userdata);
141 return $passhash->verify_hash($pass, $userdata['hash']);
144 return ($pass
162 checkPass($user, $pass) global() argument
[all...]
/dokuwiki/lib/plugins/usermanager/
H A Dcli.php155 [$login, $mail, $name, $grps, $pass] = $args;
159 if (empty($pass)) {
161 $pass = auth_pwgen($login);
168 } elseif (!empty($pass)) {
174 if ($auth->triggerUserMod('create', [$login, $pass, $name, $mail, $grps])) {
H A Dadmin.php264 * @var string $pass
374 * @param array $userdata array with name, mail, pass and grps
646 [$user, $pass, $name, $mail, $grps, $passconfirm] = $this->retrieveUser();
650 if (empty($pass)) {
652 $pass = auth_pwgen($user);
658 } elseif (!$this->verifyPassword($pass, $passconfirm)) {
663 } elseif (!empty($pass)) {
693 if ($ok = $this->auth->triggerUserMod('create', [$user, $pass, $name, $mail, $grps])) {
696 if ($INPUT->has('usernotify') && $pass) {
697 $this->notifyUser($user, $pass);
[all...]
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md99 The table formatter allows coloring full columns. To use that mechanism pass an array of colors as third parameter to
100 its ``format()`` method. Please note that you can not pass colored texts in the second parameters (text length calculation
133 If you need to pass a class implementing the `Psr\Log\LoggerInterface` you can do so by inheriting from one of the two provided classes implementing this interface instead of `splitbrain\phpcli\CLI`.
140 Note: if your backend code calls for a PSR-3 logger but does not actually type check for the interface (AKA being LoggerAware only) you can also just pass an instance of `splitbrain\phpcli\CLI`.
/dokuwiki/inc/
H A Dinfoutils.php586 if (preg_match('/(notify|pass|auth|secret|ftp|userinfo|token|buid|mail|proxy)/i', $key)) {
H A Dauth.php217 $_SESSION[DOKU_COOKIE]['auth']['pass'] = 'nope';
262 * @param string $pass Cleartext Password
270 function auth_login($user, $pass, $sticky = false, $silent = false)
284 if (!empty($pass) && $auth->checkPass($user, $pass)) {
288 auth_setCookie($user, auth_encrypt($pass, $secret), $sticky);
301 [$user, $sticky, $pass] = auth_getCookie();
302 if ($user && $pass) {
313 ($session['pass'] == sha1($pass))
207 auth_login($user, $pass, $sticky = false, $silent = false) global() argument
1246 auth_setCookie($user, $pass, $sticky) global() argument
[all...]
/dokuwiki/inc/lang/no/
H A Dstopwords.txt2 # Når du redigerer siden, pass på å bruke UNIX linjeslutt (enkel ny linje).
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSimplePie.php685 * Previously, it was possible to pass in the feed URL along with cache
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DLICENSE
/dokuwiki/inc/Remote/
H A DApiCore.php131 * @param string $pass The password
134 public function login($user, $pass)
146 $ok = $auth->trustExternal($user, $pass, false);
151 'password' => $pass,
1001 * - check if the user has the required access level (pass AUTH_NONE to skip)
1033 login($user, $pass) global() argument
/dokuwiki/conf/
H A Dmysql.conf.php.example10 * uid login pass firstname lastname email
59 * The plugin accesses the password as 'pass' so an alias might be necessary.
63 * %{pass} encrypted or clear text password (depends on 'encryptPass')
66 $conf['plugin']['authmysql']['checkPass'] = "SELECT pass
75 * 'pass' containing the encrypted or clear text password
85 $conf['plugin']['authmysql']['getUserInfo'] = "SELECT pass, CONCAT(firstname,' ',lastname) AS name, email AS mail
140 * %{pass} password (encrypted or clear text, depends on 'encryptPass')
145 (login, pass, email, firstname, lastname)
146 VALUES ('%{user}', '%{pass}', '%{email}',
216 * %{pass} passwor
[all...]
/dokuwiki/inc/Action/
H A DResendpwd.php107 $pass = $INPUT->str('pass');
110 if (!$pass) return false;
111 if ($pass != $INPUT->str('passchk')) {
117 if (!$auth->triggerUserMod('modify', [$user, ['pass' => $pass]])) {
122 $pass = auth_pwgen($user);
123 if (!$auth->triggerUserMod('modify', [$user, ['pass' => $pass]])) {
128 if (auth_sendPassword($user, $pass)) {
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBlowfish.php51 * integers and then pass successive subarrays of that array to _encryptBlock. This, however,
525 * @param string $pass
532 public static function bcrypt_pbkdf($pass, $salt, $keylen, $rounds)
540 $sha2pass = hash('sha512', $pass, true);
570 bcrypt_pbkdf($pass, $salt, $keylen, $rounds) global() argument
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php189 $pass = $context[$scheme]['password'];
192 $pass = $context[$scheme]['privkey'];
195 if (!isset($user) || !isset($pass)) {
199 // casting $pass to a string is necessary in the event that it's a \phpseclib3\Crypt\RSA object
200 if (isset(self::$instances[$host][$port][$user][(string) $pass])) {
201 $this->sftp = self::$instances[$host][$port][$user][(string) $pass];
217 if (!$this->sftp->login($user, $pass)) {
223 if (!$this->sftp->login($user, $pass)) {
227 self::$instances[$host][$port][$user][(string) $pass] = $this->sftp;
/dokuwiki/lib/plugins/authldap/
H A Dauth.php55 * @param string $pass
59 public function checkPass($user, $pass)
62 if (empty($pass)) return false;
99 if (!@ldap_bind($this->con, $dn, $pass)) {
116 if (!@ldap_bind($this->con, $dn, $pass)) {
344 $pass = auth_decrypt($loginpass, $secret);
347 if (!@ldap_bind($this->con, $dn, $pass)) {
369 $hash = $phash->hash_ssha($changes['pass']);
56 checkPass($user, $pass) global() argument
/dokuwiki/lib/plugins/authplain/
H A Dauth.php65 * @param string $pass
68 public function checkPass($user, $pass)
73 return auth_verifyPassword($pass, $this->users[$user]['pass']);
103 * @param string $pass
109 protected function createUserLine($user, $pass, $name, $mail, $grps)
112 $userline = [$user, $pass, $name, $mail, $groups];
150 $pass = auth_cryptPassword($pwd);
156 $userline = $this->createUserLine($user, $pass, $name, $mail, $grps);
164 'pass'
67 checkPass($user, $pass) global() argument
108 createUserLine($user, $pass, $name, $mail, $grps) global() argument
[all...]
/dokuwiki/
H A Dinstall.php219 <label for="password"><?php echo $lang['pass'] ?></label>
342 $error[] = sprintf($lang['i_badval'], $lang['pass']);
416 $pass = $phash->hash_bcrypt($d['password']);
436 $pass,
/dokuwiki/inc/Extension/
H A DAuthPlugin.php190 * @param string $pass Cleartext Password
195 public function trustExternal($user, $pass, $sticky = false)
211 $_SESSION[DOKU_COOKIE]['auth']['pass'] = $pass;
228 * @param string $pass the clear text password
231 public function checkPass($user, $pass)
271 * @param string $pass
277 public function createUser($user, $pass, $name, $mail, $grps = null)
197 trustExternal($user, $pass, $sticky = false) global() argument
233 checkPass($user, $pass) global() argument
279 createUser($user, $pass, $name, $mail, $grps = null) global() argument
/dokuwiki/inc/HTTP/
H A DHTTPClient.php48 public $pass;
186 if (isset($uri['pass'])) $this->pass = $uri['pass'];
240 $headers['Authorization'] = 'Basic ' . base64_encode($this->user . ':' . $this->pass);
47 public $pass; global() variable in dokuwiki\\HTTP\\HTTPClient
/dokuwiki/lib/plugins/authad/
H A Dauth.php27 * $conf['plugin']['authad']['admin_password'] = 'pass';
156 * @param string $pass
159 public function checkPass($user, $pass)
171 return $adldap->authenticate($this->getUserName($user), $pass);
590 if (isset($changes['pass'])) {
592 $return = $adldap->user()->password($this->getUserName($user), $changes['pass']);
628 * When you pass null as domain, it will reuse any existing domain.
725 // adLDAP expects empty user/pass as NULL, we're less strict FS#2781
154 checkPass($user, $pass) global() argument