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.php81 $exponents = [1 => $publicExponent->modInverse($temp)];
83 $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/DSA/
H A DPublicKey.php74 $w = $s->modInverse($this->q);
H A DPrivateKey.php124 $kinv = $k->modInverse($this->q);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php367 $coefficients[$i] = $n->modInverse($primes[$i]);
385 $coefficients[2] = $primes[2]->modInverse($primes[1]);
387 $d = $e->modInverse($temp);
391 $exponents[$i] = $e->modInverse($temp);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php326 public function modInverse(BigInteger $n) function in phpseclib3\\Math\\BigInteger
328 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 DGMP.php278 public function modInverse(GMP $n) function in phpseclib3\\Math\\BigInteger\\Engines\\GMP
H A DEngine.php315 $temp = $temp->modInverse($n);
675 $temp = $this->modInverse($n);
H A DBCMath.php242 public function modInverse(BCMath $n) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath
/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.php203 $w = $s->modInverse($order);
H A DPrivateKey.php256 $kinv = $k->modInverse($order);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
H A DInteger.php235 $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]);