Home
last modified time | relevance | path

Searched refs:BigInteger (Results 101 – 125 of 143) sorted by relevance

123456

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php64 use phpseclib3\Math\BigInteger; alias
360 $e = new BigInteger(self::$defaultExponent);
373 $primes[$i] = BigInteger::randomPrime($regSize);
375 extract(BigInteger::minMaxBits($bits));
376 /** @var BigInteger $min
377 * @var BigInteger $max
382 $primes[$i] = BigInteger::randomRangePrime($min, $max);
558 return new BigInteger($x, 256);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DClassic.php16 namespace phpseclib3\Math\BigInteger\Engines\PHP\Reductions;
18 use phpseclib3\Math\BigInteger\Engines\PHP\Base;
H A DPowerOfTwo.php16 namespace phpseclib3\Math\BigInteger\Engines\PHP\Reductions;
18 use phpseclib3\Math\BigInteger\Engines\PHP\Base;
H A DMontgomeryMult.php16 namespace phpseclib3\Math\BigInteger\Engines\PHP\Reductions;
18 use phpseclib3\Math\BigInteger\Engines\PHP;
H A DMontgomery.php16 namespace phpseclib3\Math\BigInteger\Engines\PHP\Reductions;
18 use phpseclib3\Math\BigInteger\Engines\PHP\Montgomery as Progenitor;
H A DBarrett.php16 namespace phpseclib3\Math\BigInteger\Engines\PHP\Reductions;
18 use phpseclib3\Math\BigInteger\Engines\PHP;
19 use phpseclib3\Math\BigInteger\Engines\PHP\Base;
H A DEvalBarrett.php16 namespace phpseclib3\Math\BigInteger\Engines\PHP\Reductions;
18 use phpseclib3\Math\BigInteger\Engines\PHP;
19 use phpseclib3\Math\BigInteger\Engines\PHP\Base;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/
H A DBuiltIn.php16 namespace phpseclib3\Math\BigInteger\Engines\BCMath;
18 use phpseclib3\Math\BigInteger\Engines\BCMath;
H A DBase.php16 namespace phpseclib3\Math\BigInteger\Engines\BCMath;
18 use phpseclib3\Math\BigInteger\Engines\BCMath;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/GMP/
H A DDefaultEngine.php16 namespace phpseclib3\Math\BigInteger\Engines\GMP;
18 use phpseclib3\Math\BigInteger\Engines\GMP;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPrivateKey.php27 use phpseclib3\Math\BigInteger; alias
66 $point = [$this->curve->convertInteger(new BigInteger(strrev($coordinates), 256))];
132 $r = new BigInteger($r, 256);
138 $k = new BigInteger($k, 256);
167 $e = new BigInteger($e, 256);
173 $k = BigInteger::randomRange(self::$one, $order->subtract(self::$one));
H A DPublicKey.php26 use phpseclib3\Math\BigInteger; alias
87 $S = new BigInteger($S, 256);
106 $k = new BigInteger($k, 256);
141 $e = new BigInteger($e, 256);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DPKCS1.php39 use phpseclib3\Math\BigInteger; alias
109 $components['dA'] = new BigInteger($ecPrivate['privateKey'], 256);
140 $components['dA'] = new BigInteger($key['privateKey'], 256);
180 …public static function savePrivateKey(BigInteger $privateKey, BaseCurve $curve, array $publicKey, …
H A DMontgomeryPublic.php21 use phpseclib3\Math\BigInteger; alias
61 … $components['QA'] = [$components['curve']->convertInteger(new BigInteger(strrev($key), 256))];
H A Dlibsodium.php24 use phpseclib3\Math\BigInteger; alias
108 …public static function savePrivateKey(BigInteger $privateKey, Ed25519 $curve, array $publicKey, $p…
H A DPKCS8.php38 use phpseclib3\Math\BigInteger; alias
128 $components['dA'] = new BigInteger($key['privateKey'], 256);
215 …public static function savePrivateKey(BigInteger $privateKey, BaseCurve $curve, array $publicKey, …
H A DPuTTY.php23 use phpseclib3\Math\BigInteger; alias
101 …public static function savePrivateKey(BigInteger $privateKey, BaseCurve $curve, array $publicKey, …
H A DOpenSSH.php25 use phpseclib3\Math\BigInteger; alias
188 …public static function savePrivateKey(BigInteger $privateKey, BaseCurve $curve, array $publicKey, …
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php30 use phpseclib3\Math\BigInteger; alias
1020 $value = new BigInteger($value);
1168 $eighty = new BigInteger(80);
1179 $n = new BigInteger();
1186 $n = new BigInteger();
1221 $mask = new BigInteger(0x7F);
1222 $zero = new BigInteger();
1223 $forty = new BigInteger(40);
1239 $first = new BigInteger($part1);
1241 $first = $first->add(new BigInteger($part2));
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/
H A DBase.php16 namespace phpseclib3\Math\BigInteger\Engines\PHP;
18 use phpseclib3\Math\BigInteger\Engines\PHP;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/
H A DPrivateKey.php19 use phpseclib3\Math\BigInteger; alias
108 $k = BigInteger::randomRange(self::$one, $this->q->subtract(self::$one));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DAsymmetricKey.php23 use phpseclib3\Math\BigInteger; alias
148 self::$zero = new BigInteger(0);
149 self::$one = new BigInteger(1);
600 $v = new BigInteger($in, 256);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/
H A DBarrett.php16 namespace phpseclib3\Math\BigInteger\Engines\BCMath\Reductions;
18 use phpseclib3\Math\BigInteger\Engines\BCMath\Base;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
H A DStrings.php18 use phpseclib3\Math\BigInteger; alias
145 $result[] = new BigInteger($temp, -256);
211 … if (!$element instanceof BigInteger && !$element instanceof FiniteField\Integer) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DBinary.php26 use phpseclib3\Math\BigInteger; alias
77 * @var BigInteger
84 * @var BigInteger

123456