Home
last modified time | relevance | path

Searched refs:multiplyPoint (Results 1 – 12 of 12) sorted by relevance

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DBase.php107 public function multiplyPoint(array $p, BigInteger $d) function in phpseclib3\\Crypt\\EC\\BaseCurves\\Base
231 $p1 = $this->multiplyPoint($p1, $scalars[0]);
232 $p2 = $this->multiplyPoint($p2, $scalars[1]);
H A DMontgomery.php223 public function multiplyPoint(array $p, BigInteger $d) function in phpseclib3\\Crypt\\EC\\BaseCurves\\Montgomery
H A DKoblitzPrime.php92 $lhs = $this->multiplyPoint($this->p, $lambdas[0])[0];
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
H A DCurve448.php61 public function multiplyPoint(array $p, BigInteger $d) function in phpseclib3\\Crypt\\EC\\Curves\\Curve448
72 return parent::multiplyPoint($p, $d);
H A DCurve25519.php50 public function multiplyPoint(array $p, BigInteger $d) function in phpseclib3\\Crypt\\EC\\Curves\\Curve25519
61 return parent::multiplyPoint($p, $d);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPrivateKey.php67 $point = $this->curve->multiplyPoint($point, $this->dA);
74 $point = $this->curve->multiplyPoint($point, $this->dA);
134 $R = $curve->multiplyPoint($curve->getBasePoint(), $r);
174 list($x, $y) = $this->curve->multiplyPoint($this->curve->getBasePoint(), $k);
H A DPublicKey.php111 $lhs = $curve->multiplyPoint($curve->getBasePoint(), $S);
112 $rhs = $curve->multiplyPoint($qa, $k);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DPKCS1.php113 … $components['curve']->multiplyPoint($components['curve']->getBasePoint(), $components['dA']);
143 … $components['curve']->multiplyPoint($components['curve']->getBasePoint(), $components['dA']);
H A DPKCS8.php132 … $components['curve']->multiplyPoint($components['curve']->getBasePoint(), $components['dA']);
166 …$components['QA'] = $components['curve']->multiplyPoint($components['curve']->getBasePoint(), $com…
H A DMontgomeryPrivate.php72 …$components['QA'] = $components['curve']->multiplyPoint($components['curve']->getBasePoint(), $com…
H A Dlibsodium.php80 $curve->multiplyPoint($curve->getBasePoint(), $components['dA']);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DEC.php188 $privatekey->QA = $curve->multiplyPoint($curve->getBasePoint(), $dA);