Searched refs:x3 (Results 1 – 10 of 10) sorted by relevance
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
D | ChaCha20.php | 295 * @param int $x3 (by reference) 309 …protected static function doubleRound(&$x0, &$x1, &$x2, &$x3, &$x4, &$x5, &$x6, &$x7, &$x8, &$x9, … argument 315 static::quarterRound($x3, $x7, $x11, $x15); 320 static::quarterRound($x3, $x4, $x9, $x14); 340 …list(, $x0, $x1, $x2, $x3, $x4, $x5, $x6, $x7, $x8, $x9, $x10, $x11, $x12, $x13, $x14, $x15) = unp… 344 $z3 = $x3; 375 $x3+= $x7; $x15 = self::leftRotate(intval($x15) ^ intval($x3), 16); 377 $x3+= $x7; $x15 = self::leftRotate(intval($x15) ^ intval($x3), 8); 396 $x3+= $x4; $x14 = self::leftRotate(intval($x14) ^ intval($x3), 16); 398 $x3+= $x4; $x14 = self::leftRotate(intval($x14) ^ intval($x3), 8); [all …]
|
D | Salsa20.php | 444 * @param int $x3 (by reference) 458 …protected static function doubleRound(&$x0, &$x1, &$x2, &$x3, &$x4, &$x5, &$x6, &$x7, &$x8, &$x9, … argument 464 static::quarterRound($x15, $x3, $x7, $x11); 466 static::quarterRound($x0, $x1, $x2, $x3);
|
D | Hash.php | 644 list(, $x1, $x2, $x3, $x4) = unpack('n4', $x); 647 $b = $x3 + $y3 + ($a >> 16);
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/ |
D | Binary.php | 199 $x3 = $p1->add($p2)->add($p3); 200 $y3 = $i->multiply($x3)->add($g->multiply($h)); 202 return [$x3, $y3, $z3]; 218 $x3 = $p1->add($p2)->add($p3); 219 $y3 = $i->multiply($x3)->add($g->multiply($g)->multiply($h)); 221 return [$x3, $y3, $z3]; 251 $x3 = $b->add($this->b); 257 return [$x3, $y3, $z3]; 262 $x3 = $b->add($this->b->multiply($d->multiply($d))); 265 $p2 = $a->add($y1->multiply($z1))->add($z3)->multiply($x3); [all …]
|
D | Montgomery.php | 184 list($x3, $z3) = $q; 191 $c = $x3->add($z3); 192 $d = $x3->subtract($z3);
|
D | KoblitzPrime.php | 214 $x3 = $f->subtract($this->two->multiply($d)); 215 $y3 = $e->multiply($d->subtract($x3))->subtract( 219 return [$x3, $y3, $z3]; 239 $x3 = $t; 243 return [$x3, $y3, $z3];
|
D | Prime.php | 204 $x3 = $r->multiply($r)->subtract($h3)->subtract($v->multiply($this->two)); 206 $v->subtract($x3) 210 return [$x3, $y3, $h]; 241 $x3 = $r->multiply($r)->subtract($h3)->subtract($v->multiply($this->two)); 243 $v->subtract($x3) 248 return [$x3, $y3, $z3]; 280 $x3 = $r->multiply($r)->subtract($h3)->subtract($v->multiply($this->two)); 282 $v->subtract($x3) 287 return [$x3, $y3, $z3];
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/ |
D | Ed448.php | 217 $x3 = $b->subtract($e)->multiply($j); 221 return [$x3, $y3, $z3]; 267 $x3 = $a->multiply($f)->multiply($h->subtract($c)->subtract($d)); 271 return [$x3, $y3, $z3];
|
D | Ed25519.php | 275 $x3 = $e->multiply($f); 280 return [$x3, $y3, $z3, $t3]; 326 $x3 = $e->multiply($f); 331 return [$x3, $y3, $z3, $t3];
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/ |
D | Integer.php | 293 $x3 = $x & 0x88888888; 300 $z0 = ($x0 * $y0) ^ ($x1 * $y3) ^ ($x2 * $y2) ^ ($x3 * $y1); 301 $z1 = ($x0 * $y1) ^ ($x1 * $y0) ^ ($x2 * $y3) ^ ($x3 * $y2); 302 $z2 = ($x0 * $y2) ^ ($x1 * $y1) ^ ($x2 * $y0) ^ ($x3 * $y3); 303 $z3 = ($x0 * $y3) ^ ($x1 * $y2) ^ ($x2 * $y1) ^ ($x3 * $y0);
|