Home
last modified time | relevance | path

Searched refs:modInverse (Results 1 – 18 of 18) sorted by path

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/
H A DPrivateKey.php114 $kinv = $k->modInverse($this->q);
H A DPublicKey.php65 $w = $s->modInverse($this->q);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPrivateKey.php180 $kinv = $k->modInverse($order);
H A DPublicKey.php146 $w = $s->modInverse($order);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php388 $coefficients[$i] = $n->modInverse($primes[$i]);
406 $coefficients[2] = $primes[2]->modInverse($primes[1]);
408 $d = $e->modInverse($temp);
412 $exponents[$i] = $e->modInverse($temp);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DOpenSSH.php76 $exponents = [1 => $publicExponent->modInverse($temp)];
78 $exponents[] = $publicExponent->modInverse($temp);
H A DPuTTY.php85 $exponents = [1 => $publicExponent->modInverse($temp)];
87 $exponents[] = $publicExponent->modInverse($temp);
H A DRaw.php123 $exponents = [1 => $components['publicExponent']->modInverse($temp)];
125 $exponents[] = $components['publicExponent']->modInverse($temp);
130 …$components['coefficients'] = [2 => $components['primes'][2]->modInverse($components['primes'][1])…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php195 $r = $r->modInverse($this->primes[$i]);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php324 public function modInverse(BigInteger $n) function in phpseclib3\\Math\\BigInteger
326 return new static($this->value->modInverse($n->value));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DBCMath.php243 public function modInverse(BCMath $n) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath
H A DEngine.php320 $temp = $temp->modInverse($n);
642 $temp = $this->modInverse($n);
H A DGMP.php285 public function modInverse(GMP $n) function in phpseclib3\\Math\\BigInteger\\Engines\\GMP
H A DPHP32.php171 public function modInverse(PHP32 $n) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP32
H A DPHP64.php175 public function modInverse(PHP64 $n) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP64
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/
H A DMontgomery.php79 $y1 = $mod2->modInverse($mod1);
80 $y2 = $mod1->modInverse($mod2);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
H A DInteger.php394 public function modInverse() function in phpseclib3\\Math\\BinaryField\\Integer
433 $x = $x->modInverse();
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
H A DInteger.php221 $denominator = $x->value->modInverse(static::$modulo[$this->instanceID]);