Searched refs:modPow (Results 1 – 8 of 8) sorted by relevance
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/ |
| H A D | PrivateKey.php | 103 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 D | PublicKey.php | 43 return $x->modPow($this->exponent, $this->modulus);
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/ |
| H A D | BigInteger.php | 473 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 D | PHP64.php | 277 public function modPow(PHP64 $e, PHP64 $n) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP64
|
| H A D | PHP32.php | 276 public function modPow(PHP32 $e, PHP32 $n) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP32
|
| H A D | BCMath.php | 428 public function modPow(BCMath $e, BCMath $n) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath
|
| H A D | GMP.php | 419 public function modPow(GMP $e, GMP $n) function in phpseclib3\\Math\\BigInteger\\Engines\\GMP
|
| H A D | Engine.php | 967 $y = $a->modPow($r, $n); 971 $y = $y->modPow(static::$two[static::class], $n);
|