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.php710 public static function randomRange(BigInteger $min, BigInteger $max) function in phpseclib3\\Math\\BigInteger
713 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.php101 $k = BigInteger::randomRange(self::$one, $this->q->subtract(self::$one));
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDSA.php212 $private->x = BigInteger::randomRange(self::$one, $private->q->subtract(self::$one));
H A DDH.php266 $key->privateKey = BigInteger::randomRange($one, $max);
/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.php748 return static::randomRange($min, $max);
794 $x = static::randomRange($min, $max);
966 $a = static::randomRange(static::$two[static::class], $n_2);
H A DBCMath.php511 public static function randomRange(BCMath $min, BCMath $max) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath
H A DGMP.php528 public static function randomRange(GMP $min, GMP $max) function in phpseclib3\\Math\\BigInteger\\Engines\\GMP
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPrivateKey.php173 $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));