Home
last modified time | relevance | path

Searched refs:randomRange (Results 1 – 14 of 14) sorted by last modified time

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPrivateKey.php173 $k = BigInteger::randomRange(self::$one, $order->subtract(self::$one));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDH.php258 $key->privateKey = BigInteger::randomRange($one, $max);
H A DDSA.php215 $private->x = BigInteger::randomRange(self::$one, $private->q->subtract(self::$one));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DBase.php136 return BigInteger::randomRange($one, $this->order->subtract($one));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP32.php324 public static function randomRange(PHP32 $min, PHP32 $max) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP32
H A DPHP64.php328 public static function randomRange(PHP64 $min, PHP64 $max) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP64
H A DBCMath.php517 public static function randomRange(BCMath $min, BCMath $max) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath
H A DEngine.php746 return static::randomRange($min, $max);
787 $x = static::randomRange($min, $max);
959 $a = static::randomRange(static::$two[static::class], $n_2);
H A DGMP.php536 public static function randomRange(GMP $min, GMP $max) function in phpseclib3\\Math\\BigInteger\\Engines\\GMP
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBinaryField.php138 … return new Integer($this->instanceID, BigInteger::randomRange($one, $this->randomMax)->toBytes());
H A DPrimeField.php94 …return new Integer($this->instanceID, BigInteger::randomRange($one, Integer::getModulo($this->inst…
H A DBigInteger.php713 public static function randomRange(BigInteger $min, BigInteger $max) function in phpseclib3\\Math\\BigInteger
716 return new static($class::randomRange($min->value, $max->value));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/
H A DPrivateKey.php108 $k = BigInteger::randomRange(self::$one, $this->q->subtract(self::$one));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php150 $r = BigInteger::randomRange(self::$one, $smallest->subtract(self::$one));