Lines Matching +full:password -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang)
83 // Populate Basic Auth user/password from Authorization header
116 'password' => $INPUT->str('p'),
259 $evdata['password'],
269 * a new login is assumed and user/password are checked. If they
270 * are correct the password is encrypted with blowfish and stored
276 * crypted password and browserID match between session and cookie
280 * blowfish encrypted password from the cookie is decrypted and
287 * @param string $pass Cleartext Password
388 * Creates a random key to encrypt the password in cookies
390 * This function tries to read the password for encrypting
459 * @param string $secret The secret/password that shall be used
485 * @param string $secret The secret/password that shall be used
906 * Create a pronouncable password
908 * The $foruser variable might be used by plugins to run additional password
911 * @param string $foruser username for which the password is generated
912 * @return string pronouncable password
923 'password' => '',
936 $data['password'] .= $c[auth_random(0, strlen($c) - 1)];
937 $data['password'] .= $v[auth_random(0, strlen($v) - 1)];
938 $data['password'] .= $a[auth_random(0, strlen($a) - 1)];
941 $data['password'] .= $s[auth_random(0, strlen($s) - 1)] . auth_random(10, 99);
945 return $data['password'];
949 * Sends a password to the given user
954 * @param string $password The new password in clear text
957 function auth_sendPassword($user, $password) argument
969 $text = rawLocale('password');
973 'PASSWORD' => $password
1017 $pass = auth_pwgen($login); // automatically generate password
1048 // autogenerated password? then send password to user
1198 * Send a new password
1200 * This function handles both phases of the password reset:
1202 * - handling the first request of password reset
1203 * - validating the password reset auth token
1252 if (!$conf['autopasswd']) { // we let the user choose a password
1255 // password given correctly?
1267 } else { // autogenerate the password and send by mail
1326 * Encrypts a password using the given method and salt
1331 * You can pass null as the password to create an unusable hash.
1335 * @param string $clear The clear text password
1338 * @return string The crypted password
1362 * Verifies a cleartext password against a crypted hash
1364 * @param string $clear The clear text password
1385 * @param string $pass encrypted password
1422 * Returns the user, (encrypted) password and sticky bit from cookie