Searched refs:fixedIdent (Results 1 – 4 of 4) sorted by relevance
| /plugin/captcha/ |
| D | helper.php | 28 $this->field_in = md5($this->fixedIdent() . $this->field_in); 29 $this->field_sec = md5($this->fixedIdent() . $this->field_sec); 30 $this->field_hp = md5($this->fixedIdent() . $this->field_hp); 55 $cookie = new FileCookie($this->fixedIdent(), $rand); 59 $code = $this->generateMath($this->fixedIdent(), $rand); 66 $code = $this->generateCaptchaCode($this->fixedIdent(), $rand); 134 $code = $this->generateMath($this->fixedIdent(), $rand); 139 $code = $this->generateCaptchaCode($this->fixedIdent(), $rand); 149 !(new FileCookie($this->fixedIdent(), $rand))->check() 172 public function fixedIdent() function in helper_plugin_captcha
|
| D | img.php | 32 $plugin->fixedIdent(),
|
| D | wav.php | 33 $plugin->fixedIdent(),
|
| /plugin/captcha/_test/ |
| D | HelperTest.php | 59 $code = $helper->generateCaptchaCode($helper->fixedIdent(), $rand); 61 $cookie = new FileCookie($helper->fixedIdent(), $rand); 86 $code = $helper->generateCaptchaCode($helper->fixedIdent(), $rand); 87 $newcode = $helper->generateCaptchaCode($helper->fixedIdent() . 'X', $rand); 89 $newcode = $helper->generateCaptchaCode($helper->fixedIdent(), $rand + 0.1);
|