Home
last modified time | relevance | path

Searched +full:pass -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 102) sorted by relevance

12345

/dokuwiki/lib/plugins/authpdo/_test/mysql/
H A Dwordpress.php64 'update-user-pass' => '
76 'pass' => 'pass',
86 'pass' => 'pass',
96 'pass' => 'pass',
106 'pass' => 'pass',
H A Dmybb.php21 'check-pass' => '
82 'update-user-pass' => '
103 'pass' => 'fakepass',
113 'pass' => 'fakepass',
123 'pass' => 'fakepass',
133 'pass' => 'fakepass',
H A Dfluxbb.php65 'update-user-pass' => '
85 'pass' => 'pass',
95 'pass' => 'password',
/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)) {
/dokuwiki/inc/
H A Dauth.php242 $_SESSION[DOKU_COOKIE]['auth']['pass'] = 'nope';
288 * @param string $pass Cleartext Password
296 function auth_login($user, $pass, $sticky = false, $silent = false) argument
310 …if (!empty($pass)) usleep(random_int(0, 250)); // add a random delay to prevent timing attacks #44…
311 if (!empty($pass) && $auth->checkPass($user, $pass)) {
315 auth_setCookie($user, auth_encrypt($pass, $secret), $sticky);
328 [$user, $sticky, $pass] = auth_getCookie();
329 if ($user && $pass) {
337 isset($session['pass']) &&
341 ($session['pass'] === sha1($pass)) && //still crypted
[all …]
/dokuwiki/_test/mock/
H A DAuthDeletePlugin.php16 public function checkPass($user, $pass) { argument
17 return $pass == 'password';
/dokuwiki/lib/plugins/authpdo/conf/
H A Dmetadata.php12 $meta['pass'] = array('password', '_caution' => 'danger', '_code' => 'base64');
14 $meta['check-pass'] = array('', '_caution' => 'danger');
23 $meta['update-user-pass'] = array('', '_caution' => 'danger');
H A Ddefault.php12 $conf['pass'] = '';
28 $conf['check-pass'] = '';
98 $conf['update-user-pass'] = '';
/dokuwiki/lib/plugins/authpdo/_test/pgsql/
H A Ddjango.php76 'update-user-pass' => '
96 'pass' => 'P4zzW0rd!',
106 'pass' => 'P4zzW0rd!',
116 'pass' => 'P4zzW0rd!',
126 'pass' => 'P4zzW0rd!',
/dokuwiki/lib/plugins/authpdo/_test/
H A Dmysql.test.php15 protected $pass = ''; variable in mysql_plugin_authpdo_test
28 $this->pass = $conf['pass'];
63 "{$this->driver}:host={$this->host};port={$this->port}", $this->user, $this->pass,
78 "{$this->driver}:host={$this->host};port={$this->port}", $this->user, $this->pass,
100 …>driver}:dbname={$this->database};host={$this->host};port={$this->port}", $this->user, $this->pass,
140 'pass' => 'password',
146 $newuser['pass'],
171 $this->assertTrue($auth->checkPass($user['user'], $user['pass']), $info);
211 $ok = $auth->modifyUser($user['user'], array('pass' => $newpass));
303 $conf['plugin']['authpdo']['pass'] = $this->pass;
H A Dsqlite.test.php49 $conf['plugin']['authpdo']['pass'] = '';
51 …$conf['plugin']['authpdo']['select-user'] = 'SELECT id AS uid, login AS user, name, pass AS clear,…
55 …$conf['plugin']['authpdo']['insert-user'] = 'INSERT INTO user (login, pass, name, mail) VALUES (:u…
81 … $conf['plugin']['authpdo']['update-user-pass'] = 'UPDATE user SET pass = :hash WHERE id = :uid';
125 …$conf['plugin']['authpdo']['select-user'] = 'SELECT id AS uid, login AS user, name, pass AS hash, …
151 …$auth->modifyUser('test', array('user' => 'tester', 'name' => 'The Test User', 'pass' => 'secret')…
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits/
H A DPasswordProtected.php33 …* Private keys can be encrypted with a password. To unset the password, pass in the empty string …
34 * Or rather, pass in $password such that empty($password) && !is_string($password) is true.
/dokuwiki/lib/plugins/authplain/
H A Dauth.php65 * @param string $pass
68 public function checkPass($user, $pass) argument
76 return auth_verifyPassword($pass, $this->users[$user]['pass']);
106 * @param string $pass
112 protected function createUserLine($user, $pass, $name, $mail, $grps) argument
115 $userline = [$user, $pass, $name, $mail, $groups];
153 $pass = auth_cryptPassword($pwd);
159 $userline = $this->createUserLine($user, $pass, $name, $mail, $grps);
167 'pass' => $pass,
209 if ($field == 'pass') $value = auth_cryptPassword($value);
[all …]
/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,…
140 * %{pass} password (encrypted or clear text, depends on 'encryptPass')
145 (login, pass, email, firstname, lastname)
146 VALUES ('%{user}', '%{pass}', '%{email}',
216 * %{pass} password (encrypted or clear text, depends on 'encryptPass')
[all …]
/dokuwiki/_test/tests/inc/
H A Dio_savefile.test.php6 * dependency for tests needing zlib extension to pass
17 * dependency for tests needing zlib extension to pass
H A Dio_readfile.test.php6 * dependency for tests needing zlib extension to pass
17 * dependency for tests needing zlib extension to pass
H A Dio_getSizeFile.test.php6 * dependency for tests needing zlib extension to pass
16 * dependency for tests needing zlib extension to pass
/dokuwiki/lib/plugins/usermanager/_test/
H A DAuthPlugin.php35 $pass = md5($pwd);
37 $this->users[$user] = compact('pass', 'name', 'mail', 'grps');
/dokuwiki/_test/
H A Dmysql.conf.php.dist9 $conf['pass'] = '';
H A Dpgsql.conf.php.dist9 $conf['pass'] = 'postgres';
/dokuwiki/inc/Extension/
H A DAuthPlugin.php190 * @param string $pass Cleartext Password
195 public function trustExternal($user, $pass, $sticky = false) argument
211 $_SESSION[DOKU_COOKIE]['auth']['pass'] = $pass;
228 * @param string $pass the clear text password
231 public function checkPass($user, $pass) argument
271 * @param string $pass
277 public function createUser($user, $pass, $name, $mail, $grps = null) argument
/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 …
100 its ``format()`` method. Please note that you can not pass colored texts in the second parameters (…
133 If you need to pass a class implementing the `Psr\Log\LoggerInterface` you can do so by inheriting …
140 …pe check for the interface (AKA being LoggerAware only) you can also just pass an instance of `spl…
/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) argument
132 if ($this->checkConfig(['check-pass'])) {
133 $userdata['clear'] = $pass;
134 $userdata['hash'] = auth_cryptPassword($pass);
135 $result = $this->query($this->getConf('check-pass'), $userdata);
144 return $passhash->verify_hash($pass, $userdata['hash']);
147 return ($pass === $userdata['clear']);
[all …]
/dokuwiki/lib/plugins/authplain/_test/
H A Descaping.test.php49 $this->assertStringStartsWith(":B:",$mwuser['pass']);
82 $user['pass'] = "awesome new password";
88 $this->assertTrue($this->auth->checkPass("testuser", $user['pass']));
/dokuwiki/inc/Ui/
H A DUserRegister.php47 … $input = $form->addPasswordInput('pass', $lang['pass'])->attrs($base_attrs)->addClass('edit');

12345