Home
last modified time | relevance | path

Searched refs:randomRange (Results 1 – 14 of 14) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DPrimeField.php88 …return new Integer($this->instanceID, BigInteger::randomRange($one, Integer::getModulo($this->inst…
H A DBinaryField.php143 … return new Integer($this->instanceID, BigInteger::randomRange($one, $this->randomMax)->toBytes());
H A DBigInteger.php744 public static function randomRange(BigInteger $min, BigInteger $max) function in phpseclib3\\Math\\BigInteger
747 return new static($class::randomRange($min->value, $max->value));
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DBase.php118 return BigInteger::randomRange($one, $this->order->subtract($one));
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/
H A DPrivateKey.php118 $k = BigInteger::randomRange(self::$one, $this->q->subtract(self::$one));
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP64.php323 public static function randomRange(PHP64 $min, PHP64 $max) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP64
H A DPHP32.php322 public static function randomRange(PHP32 $min, PHP32 $max) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP32
H A DEngine.php782 return static::randomRange($min, $max);
826 $x = static::randomRange($min, $max);
998 $a = static::randomRange(static::$two[static::class], $n_2);
H A DGMP.php531 public static function randomRange(GMP $min, GMP $max) function in phpseclib3\\Math\\BigInteger\\Engines\\GMP
H A DBCMath.php515 public static function randomRange(BCMath $min, BCMath $max) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDSA.php248 $private->x = BigInteger::randomRange(self::$one, $private->q->subtract(self::$one));
H A DDH.php272 $key->privateKey = BigInteger::randomRange($one, $max);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPrivateKey.php249 $k = BigInteger::randomRange(self::$one, $order->subtract(self::$one));
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php138 $r = BigInteger::randomRange(self::$one, $smallest->subtract(self::$one));