Home
last modified time | relevance | path

Searched refs:modPow (Results 1 – 8 of 8) sorted by relevance

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php115 return $x->modPow($this->exponent, $this->modulus);
122 1 => $x->modPow($this->exponents[1], $this->primes[1]),
123 2 => $x->modPow($this->exponents[2], $this->primes[2])
132 $m_i = $x->modPow($this->exponents[$i], $this->primes[$i]);
192 $x = $x->multiply($r->modPow($this->publicExponent, $this->primes[$i]));
193 $x = $x->modPow($this->exponents[$i], $this->primes[$i]);
H A DPublicKey.php47 return $x->modPow($this->exponent, $this->modulus);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php475 public function modPow(BigInteger $e, BigInteger $n) function in phpseclib3\\Math\\BigInteger
477 return new static($this->value->modPow($e->value, $n->value));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP32.php278 public function modPow(PHP32 $e, PHP32 $n) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP32
H A DPHP64.php282 public function modPow(PHP64 $e, PHP64 $n) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP64
H A DEngine.php960 $y = $a->modPow($r, $n);
964 $y = $y->modPow(static::$two[static::class], $n);
H A DBCMath.php434 public function modPow(BCMath $e, BCMath $n) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath
H A DGMP.php427 public function modPow(GMP $e, GMP $n) function in phpseclib3\\Math\\BigInteger\\Engines\\GMP