Home
last modified time | relevance | path

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

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php103 return $x->modPow($this->exponent, $this->modulus);
110 1 => $x->modPow($this->exponents[1], $this->primes[1]),
111 2 => $x->modPow($this->exponents[2], $this->primes[2])
120 $m_i = $x->modPow($this->exponents[$i], $this->primes[$i]);
179 $x = $x->multiply($r->modPow($this->publicExponent, $this->primes[$i]));
180 $x = $x->modPow($this->exponents[$i], $this->primes[$i]);
H A DPublicKey.php43 return $x->modPow($this->exponent, $this->modulus);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php473 public function modPow(BigInteger $e, BigInteger $n) function in phpseclib3\\Math\\BigInteger
475 return new static($this->value->modPow($e->value, $n->value));
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP64.php277 public function modPow(PHP64 $e, PHP64 $n) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP64
H A DPHP32.php276 public function modPow(PHP32 $e, PHP32 $n) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP32
H A DBCMath.php428 public function modPow(BCMath $e, BCMath $n) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath
H A DGMP.php419 public function modPow(GMP $e, GMP $n) function in phpseclib3\\Math\\BigInteger\\Engines\\GMP
H A DEngine.php967 $y = $a->modPow($r, $n);
971 $y = $y->modPow(static::$two[static::class], $n);