Home
last modified time | relevance | path

Searched refs:gcd (Results 1 – 7 of 7) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php383 $lcm['bottom'] = $lcm['bottom'] === false ? $temp : $lcm['bottom']->gcd($temp);
387 $gcd = $temp->gcd($e);
389 } while (!$gcd->equals(self::$one));
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php343 'gcd' => new static($gcd),
357 public function gcd(BigInteger $n) function in phpseclib3\\Math\\BigInteger
359 return new static($this->value->gcd($n->value));
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP64.php196 public function gcd(PHP64 $n) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP64
H A DPHP32.php195 public function gcd(PHP32 $n) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP32
H A DBCMath.php298 public function gcd(BCMath $n) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath
302 return $gcd;
H A DGMP.php316 public function gcd(GMP $n) function in phpseclib3\\Math\\BigInteger\\Engines\\GMP
H A DEngine.php325 if (!$gcd->equals(static::$one[static::class])) {