Home
last modified time | relevance | path

Searched refs:instanceID (Results 1 – 4 of 4) sorted by relevance

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
DInteger.php42 protected $instanceID; variable in phpseclib3\\Math\\PrimeField\\Integer
68 * @param int $instanceID
70 public function __construct($instanceID, BigInteger $num = null) argument
72 $this->instanceID = $instanceID;
76 $reduce = static::$reduce[$instanceID];
84 * @param int $instanceID
87 public static function setModulo($instanceID, BigInteger $modulo) argument
89 static::$modulo[$instanceID] = $modulo;
95 * @param int $instanceID
98 public static function setRecurringModuloFunction($instanceID, callable $function) argument
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
DPrimeField.php44 protected $instanceID; variable in phpseclib3\\Math\\PrimeField
57 $this->instanceID = self::$instanceCounter++;
58 Integer::setModulo($this->instanceID, $modulo);
59 … Integer::setRecurringModuloFunction($this->instanceID, $modulo->createRecurringModuloFunction());
79 return new Integer($this->instanceID, $num);
94 …return new Integer($this->instanceID, BigInteger::randomRange($one, Integer::getModulo($this->inst…
104 return Integer::getModulo($this->instanceID)->getLengthInBytes();
114 return Integer::getModulo($this->instanceID)->getLength();
122 Integer::cleanupCache($this->instanceID);
DBinaryField.php44 protected $instanceID; variable in phpseclib3\\Math\\BinaryField
108 $this->instanceID = self::$instanceCounter++;
109 Integer::setModulo($this->instanceID, $modulo);
110 Integer::setRecurringModuloFunction($this->instanceID, $reduce);
123 return new Integer($this->instanceID, $num instanceof BigInteger ? $num->toBytes() : $num);
138 … return new Integer($this->instanceID, BigInteger::randomRange($one, $this->randomMax)->toBytes());
148 return strlen(Integer::getModulo($this->instanceID));
158 return strlen(Integer::getModulo($this->instanceID)) << 3;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
DInteger.php51 protected $instanceID; variable in phpseclib3\\Math\\BinaryField\\Integer
70 public function __construct($instanceID, $num = '') argument
72 $this->instanceID = $instanceID;
76 $reduce = static::$reduce[$instanceID];
83 * @param int $instanceID
86 public static function setModulo($instanceID, $modulo) argument
88 static::$modulo[$instanceID] = $modulo;
94 public static function setRecurringModuloFunction($instanceID, callable $function) argument
96 static::$reduce[$instanceID] = $function;
106 if ($x->instanceID != $y->instanceID) {
[all …]