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'),
260 $evdata['password'],
270 * a new login is assumed and user/password are checked. If they
271 * are correct the password is encrypted with blowfish and stored
277 * crypted password and browserID match between session and cookie
281 * blowfish encrypted password from the cookie is decrypted and
288 * @param string $pass Cleartext Password
390 * Creates a random key to encrypt the password in cookies
392 * This function tries to read the password for encrypting
461 * @param string $secret The secret/password that shall be used
487 * @param string $secret The secret/password that shall be used
908 * Create a pronouncable password
910 * The $foruser variable might be used by plugins to run additional password
913 * @param string $foruser username for which the password is generated
914 * @return string pronouncable password
925 'password' => '',
938 $data['password'] .= $c[auth_random(0, strlen($c) - 1)];
939 $data['password'] .= $v[auth_random(0, strlen($v) - 1)];
940 $data['password'] .= $a[auth_random(0, strlen($a) - 1)];
943 $data['password'] .= $s[auth_random(0, strlen($s) - 1)] . auth_random(10, 99);
947 return $data['password'];
951 * Sends a password to the given user
956 * @param string $password The new password in clear text
959 function auth_sendPassword($user, $password) argument
971 $text = rawLocale('password');
975 'PASSWORD' => $password
1019 $pass = auth_pwgen($login); // automatically generate password
1050 // autogenerated password? then send password to user
1200 * Send a new password
1202 * This function handles both phases of the password reset:
1204 * - handling the first request of password reset
1205 * - validating the password reset auth token
1254 if (!$conf['autopasswd']) { // we let the user choose a password
1257 // password given correctly?
1269 } else { // autogenerate the password and send by mail
1328 * Encrypts a password using the given method and salt
1333 * You can pass null as the password to create an unusable hash.
1337 * @param string $clear The clear text password
1340 * @return string The crypted password
1364 * Verifies a cleartext password against a crypted hash
1366 * @param string $clear The clear text password
1387 * @param string $pass encrypted password
1424 * Returns the user, (encrypted) password and sticky bit from cookie