Lines Matching refs:rand
33 $rand = "12345";
34 $secret = $helper->encrypt($rand);
36 $this->assertSame($rand, $helper->decrypt($secret));
58 $rand = 0;
59 $code = $helper->generateCaptchaCode($helper->fixedIdent(), $rand);
61 $cookie = new FileCookie($helper->fixedIdent(), $rand);
69 $INPUT->set($this->getInaccessibleProperty($helper, 'field_sec'), $helper->encrypt($rand));
85 $rand = 0;
86 $code = $helper->generateCaptchaCode($helper->fixedIdent(), $rand);
87 $newcode = $helper->generateCaptchaCode($helper->fixedIdent() . 'X', $rand);
89 $newcode = $helper->generateCaptchaCode($helper->fixedIdent(), $rand + 0.1);