Home
last modified time | relevance | path

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

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DRaw.php118 $exponents = [1 => $components['publicExponent']->modInverse($temp)];
120 $exponents[] = $components['publicExponent']->modInverse($temp);
125 …$components['coefficients'] = [2 => $components['primes'][2]->modInverse($components['primes'][1])…
H A DPuTTY.php78 $exponents = [1 => $publicExponent->modInverse($temp)];
80 $exponents[] = $publicExponent->modInverse($temp);
H A DOpenSSH.php71 $exponents = [1 => $publicExponent->modInverse($temp)];
73 $exponents[] = $publicExponent->modInverse($temp);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/
H A DMontgomery.php75 $y1 = $mod2->modInverse($mod1);
76 $y2 = $mod1->modInverse($mod2);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php373 $coefficients[$i] = $n->modInverse($primes[$i]);
391 $coefficients[2] = $primes[2]->modInverse($primes[1]);
393 $d = $e->modInverse($temp);
397 $exponents[$i] = $e->modInverse($temp);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/
H A DPublicKey.php60 $w = $s->modInverse($this->q);
H A DPrivateKey.php107 $kinv = $k->modInverse($this->q);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php321 public function modInverse(BigInteger $n) function in phpseclib3\\Math\\BigInteger
323 return new static($this->value->modInverse($n->value));
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP64.php171 public function modInverse(PHP64 $n) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP64
H A DPHP32.php170 public function modInverse(PHP32 $n) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP32
H A DBCMath.php237 public function modInverse(BCMath $n) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath
H A DGMP.php278 public function modInverse(GMP $n) function in phpseclib3\\Math\\BigInteger\\Engines\\GMP
H A DEngine.php315 $temp = $temp->modInverse($n);
639 $temp = $this->modInverse($n);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
H A DInteger.php390 public function modInverse() function in phpseclib3\\Math\\BinaryField\\Integer
429 $x = $x->modInverse();
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPublicKey.php141 $w = $s->modInverse($order);
H A DPrivateKey.php180 $kinv = $k->modInverse($order);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
H A DInteger.php218 $denominator = $x->value->modInverse(static::$modulo[$this->instanceID]);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php182 $r = $r->modInverse($this->primes[$i]);