Searched refs:p2 (Results 1 – 7 of 7) sorted by relevance
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/ |
D | Base.php | 212 $p2 = $this->convertToInternal($points[1]); 214 $p2 = $this->multiplyPoint($p2, $scalars[1]); 215 $r = $this->addPoint($p1, $p2);
|
D | Montgomery.php | 223 $p2 = $this->convertToInternal($p); 231 list($p2, $p1) = $this->doubleAndAddPoint($p2, $p1, $x); 233 list($p1, $p2) = $this->doubleAndAddPoint($p1, $p2, $x);
|
D | Binary.php | 197 $p2 = $f->multiply($i); 199 $x3 = $p1->add($p2)->add($p3); 216 $p2 = $f->multiply($i); 218 $x3 = $p1->add($p2)->add($p3); 254 $p2 = $a->add($y1)->multiply($b); 255 $y3 = $p1->add($p2); 265 $p2 = $a->add($y1->multiply($z1))->add($z3)->multiply($x3); 266 $y3 = $p1->add($p2);
|
D | KoblitzPrime.php | 138 $p2 = $c2->multiply($v2['a']); 142 $k1 = $k->subtract($p1)->subtract($p2);
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
D | Salsa20.php | 40 protected $p2 = false; variable in phpseclib3\\Crypt\\Salsa20 223 $this->p2 = substr($constant, 8, 4) . 315 $iv = pack('V', $this->counter) . $this->p2; 327 $block ^= static::salsa20($this->p1 . pack('V', $i++) . $this->p2); 352 $iv = pack('V', $buffer['counter']) . $this->p2; 367 … $block ^= static::salsa20($this->p1 . pack('V', $buffer['counter']++) . $this->p2); 372 $temp = static::salsa20($this->p1 . pack('V', $buffer['counter']++) . $this->p2); 378 $iv = pack('V', $buffer['counter']) . $this->p2; 390 … $block ^= static::salsa20($this->p1 . pack('V', $buffer['counter']++) . $this->p2);
|
D | ChaCha20.php | 262 $this->p2 = $this->nonce; 264 $this->p2 = "\0\0\0\0" . $this->p2;
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/ |
D | Strings.php | 356 $p2 = ($b * 0x8020) & 0x88440; 358 (($p1 | $p2) * 0x10101) >> 16
|