Home
last modified time | relevance | path

Searched refs:pass (Results 1 – 25 of 374) sorted by relevance

12345678910>>...15

/plugin/passpolicy/
H A Dscript.js16 function scorePassword(pass) { argument
18 if (!pass)
23 for (var i = 0; i < pass.length; i++) {
24 letters[pass[i]] = (letters[pass[i]] || 0) + 1;
25 score += 5.0 / letters[pass[i]];
30 digits: /\d/.test(pass),
31 lower: /[a-z]/.test(pass),
32 upper: /[A-Z]/.test(pass),
33 nonWords: /\W/.test(pass)
52 var pass = $field.val();
[all …]
H A Dhelper.php166 * @param string $pass true if the password validates against the policy
170 public function checkPolicy($pass, $username) argument
175 if (strlen($pass) < $this->min_length) {
181 if (!empty($this->usepools['lower'])) $matched_pools += (int)preg_match('/[a-z]/', $pass);
182 if (!empty($this->usepools['upper'])) $matched_pools += (int)preg_match('/[A-Z]/', $pass);
186 $pass);
193 $pass = utf8_strtolower($pass);
206 for ($i = 0; $i < utf8_strlen($pass) - $this->usernamecheck + 1; $i++) {
207 $chunk = utf8_substr($pass, $i, $this->usernamecheck + 1);
226 if (in_array("$pass\n", $commons)) {
[all …]
H A Daction.php60 $pass = $INPUT->post->str('pass');
65 if (!$passpolicy->checkPolicy($pass, $user)) {
110 $pass = $event->data['params'][1];
116 $pass = $event->data['params'][1]['pass'];
123 if (!$passpolicy->checkPolicy($pass, $user)) {
/plugin/swiftmail/Swift/Plugin/
H A DVerboseSending.php52 $pass = !in_array($address->getAddress(), $failed);
53 $this->getView()->paintResult($address->getAddress(), $pass);
60 $pass = !in_array($address->getAddress(), $failed);
61 $this->getView()->paintResult($address->getAddress(), $pass);
68 $pass = !in_array($address->getAddress(), $failed);
69 $this->getView()->paintResult($address->getAddress(), $pass);
/plugin/siteexport/inc/
H A Dhttpproxy.php90 list($this->user, $sticky, $this->pass) = auth_getCookie();
97 $this->pass = $INPUT->str('p');
100 $this->pass = !empty($this->pass) ? $this->auth_decrypt($this->pass, $secret) : '';
109 private function auth_decrypt($pass, $secret) { argument
113 return auth_decrypt($pass, $secret);
116 return PMA_blowfish_decrypt($pass, $secret);
/plugin/securelogin/
H A Dsecurelogin.js34 var pass = form.p;
37 form.securelogin.value = encrypt("p="+esc(pass.value)+";"+sectok.value);
38 pass.value = "******";
52 var pass = form.add_userpass;
56 …form.securelogin.value = encrypt("userpass="+esc(pass.value)+"&userpass2="+esc(pass2.value)+";"+se…
57 pass.value = "******";
65 var pass = form.modify_userpass;
69 …form.securelogin.value = encrypt("userpass="+esc(pass.value)+"&userpass2="+esc(pass2.value)+";"+se…
70 pass.value = "******";
/plugin/autogallery/
H A Dauth.php50 * @param string $pass Cleartext Password
82 * @param string $pass the clear text password
85 public function checkPass($user, $pass) { argument
121 * @param string $pass
/plugin/authnc/
H A Dauth.php73 * @param string $pass Cleartext Password
78 public function trustExternal($user, $pass, $sticky = false) argument
88 $xml = $this->nc_request($server, $user, $pass);
110 $_SESSION[DOKU_COOKIE]['auth']['pass'] = $pass;
132 * @param string $pass the clear text password
136 public function checkPass($user, $pass) argument
180 * @param string $pass
438 * @param string $pass the users password
442 protected function nc_request($url, $user, $pass) { argument
443 curl_setopt($this->curl, CURLOPT_USERPWD, $user . ':' . $pass);
/plugin/authchained/
H A Dauth.php166 * @param string $pass Cleartext Password
170 public function trustExternal($user, $pass, $sticky = false) { argument
173 if($module[1]->canDo('external') && $module[1]->trustExternal($user, $pass, $sticky)) {
199 * @param string $pass the clear text password
202 public function checkPass($user, $pass) { argument
206 return $this->chained_auth->checkPass($user, $pass);
208 if($module[1]->canDo('external') && $module[1]->trustExternal($user, $pass)) {
213 if($module[1]->checkPass($user, $pass)) {
269 * @param string $pass
275 public function createUser($user, $pass, $name, $mail, $grps = null) { argument
[all …]
/plugin/authmantis/
H A Dauth.php60 * @param string $pass Cleartext Password
64 public function trustExternal( $user, $pass, $sticky = false ) { argument
71 $pass = auth_prepare_password( $pass );
82 if( auth_attempt_login( $user, $pass, $sticky ) ) {
/plugin/dbquery/
H A Dhelper.php38 * @param string|null $pass
41 public function getPDO($dsn = null, $user = null, $pass = null) argument
45 $pass = $pass ?: conf_decodeString($this->getConf('pass'));
46 $conid = md5($dsn . $user . $pass);
56 $this->pdo[$conid] = new PDO($dsn, $user, $pass, $opts);
/plugin/structtemplate/_vagrant/
H A Ddokuwiki_password.php17 $pass = new dokuwiki\PassHash(); variable
20 $pass = new PassHash(); variable
24 echo $pass->hash_smd5($clear) . PHP_EOL;
/plugin/ditaa/
H A Dsyntax.php224 $pass = array();
225 $pass['scale'] = $data['scale'];
226 $pass['timeout'] = 25;
227 $pass['grid'] = io_readFile($in);
228 if(!$data['antialias']) $pass['A'] = 'on';
229 if(!$data['shadow']) $pass['S'] = 'on';
230 if($data['round']) $pass['r'] = 'on';
231 if(!$data['edgesep']) $pass['E'] = 'on';
/plugin/authsplit/
H A Dauth.php143 * @param string $pass the clear text password
146 public function checkPass($user, $pass) { argument
148 if (!$this->authplugins['primary']->checkPass($user, $pass)) {
172 * @param string $pass The clear text password (may be empty)
176 public function trustExternal($user, $pass, $sticky = false) { argument
181 if (!$this->authplugins['primary']->trustExternal($user, $pass, $sticky)) {
273 $user, $pass,
298 * @param string $pass the clear text password
386 * @param string $pass
392 public function createUser($user, $pass, argument
[all...]
/plugin/s5reloaded/ui/effects_support/
H A Dunittest.js266 pass: function() { method in Test.Unit.Assertions
287 try { expression ? this.pass() :
293 try { (expected == actual) ? this.pass() :
315 try { (expected != actual) ? this.pass() :
321 try { (expected === actual) ? this.pass() :
328 try { !(expected === actual) ? this.pass() :
335 try { (obj==null) ? this.pass() :
342 try { (regex.exec(actual)) ? this.pass() :
396 m() ? this.pass() :
405 !m() ? this.pass() :
[all …]
/plugin/authvk/
H A Dauth.php41 function trustExternal($user, $pass, $sticky = false) { argument
61 if ($login['password'] != sha1($login['_id'] . $pass)) {
87 * @param string $pass
90 public function checkPass($user, $pass) { argument
94 return auth_verifyPassword($pass, $this->users[$user]['pass']);
123 * @param string $pass
129 protected function _createUserLine($user, $pass, $name, $mail, $grps) { argument
131 $userline = array($user, $pass, $name, $mail, $groups);
168 $pass = auth_cryptPassword($pwd);
174 $userline = $this->_createUserLine($user, $pass, $name, $mail, $grps);
/plugin/authimap2/
H A Dauth.php68 * @param string $pass the clear text password
71 public function checkPass($user, $pass) { argument
88 $imap_login = @imap_open($server, $login, $pass, OP_READONLY);
126 * @param string $pass
132 protected function _createUserLine($user, $pass, $name, $mail, $grps) { argument
134 $userline = array($user, $pass, $name, $mail, $groups);
153 * @param string $pass
159 public function createUser($user, $pass, $name, $mail, $grps = null) { argument
169 $pass = auth_cryptPassword($pwd);
175 $userline = $this->_createUserLine($user, $pass, $name, $mail, $grps);
/plugin/mytemplate/
H A Daction.php269 for ($pass = 0; $replacements != 0 && ($maxpasses == -1 || $pass <= $maxpasses); $pass++) {
289 if ($targetpass != $pass) {
293 $this->substitute($param1, $pass);
295 if (!empty($param2)) $this->substitute($param2, $pass);
296 if (!empty($param3)) $this->substitute($param3, $pass);
336 $this->substitute($param2, $pass);
339 $this->substitute($param3, $pass);
/plugin/magento/
H A Dauth.php70 * @param string $pass Cleartext Password
83 * @param string $pass the clear text password
86 public function checkPass($user, $pass) { argument
89 return $this->_checkUserPassword( $entity, $pass );
93 return $this->_checkAdminPassword( $entity, $pass );
177 * @param string $pass
379 * @param string $pass the clear text password
381 protected function _checkUserPassword( $entity, $pass ) { argument
397 return $this->validateHash( $pass, $hash );
433 * @param string $pass the clear text password
[all …]
/plugin/authucenter/
H A Dauth.php78 * @param string $pass Cleartext Password
82 public function trustExternal($user, $pass, $sticky = false) { argument
95 list($uid, $username, $password, $email) = $this->_uc_user_login($user, $pass);
143 $_SESSION[DOKU_COOKIE]['auth']['pass'] = $pass;
156 * @param string $pass the clear text password
159 public function checkPass($user, $pass) { argument
160 return $this->_uc_user_login($user, $pass); // return true if okay
202 * @param string $pass
208 public function createUser($user, $pass, $name, $mail, $grps = null) { argument
209 return $this->_uc_user_register($user, $pass, $mail);
/plugin/sfauth/
H A Dauth.php34 * @param string $pass
37 function checkPass(&$user, $pass) { argument
41 return parent::checkPass($user, $pass);
/plugin/fblogin/files/
H A Dfacebook.class.php50 function trustExternal($user,$pass,$sticky=true ){ argument
97 $pass = '';
100 $_SESSION[DOKU_COOKIE]['auth']['pass'] = $pass;
132 function checkPass($user,$pass){ argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Ddependencies.phpt32 This test depends on "DependencyFailureTest::testOne" to pass.
35 This test depends on "DependencyFailureTest::testTwo" to pass.
38 This test depends on "DependencyFailureTest::testOne" to pass.
H A Ddependencies-isolation.phpt33 This test depends on "DependencyFailureTest::testOne" to pass.
36 This test depends on "DependencyFailureTest::testTwo" to pass.
39 This test depends on "DependencyFailureTest::testOne" to pass.
/plugin/authhttp/
H A Dauth.php95 * @param string $pass the clear text password
98 public function checkPass($user, $pass) {
99 return ($user == $this->cleanUser($_SERVER['PHP_AUTH_USER']) && $pass == $_SERVER['PHP_AUTH_PW']);
93 checkPass($user, $pass) global() argument

12345678910>>...15