Home
last modified time | relevance | path

Searched refs:components (Results 1 – 25 of 617) sorted by relevance

12345678910>>...25

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DRaw.php55 $components = ['isPublicKey' => false];
71 if (!isset($components['publicExponent']) || !isset($components['modulus'])) {
76 $components['primes'] = $key['primes'];
115 if (!isset($components['primes'])) {
116 $components['isPublicKey'] = true;
117 return $components;
120 if (!isset($components['exponents'])) {
126 $components['exponents'] = $exponents;
129 if (!isset($components['coefficients'])) {
130 …$components['coefficients'] = [2 => $components['primes'][2]->modInverse($components['primes'][1])…
[all …]
H A DXML.php58 $components = [
86 $components['modulus'] = $value;
92 $components['primes'][1] = $value;
95 $components['primes'][2] = $value;
98 $components['exponents'][1] = $value;
113 foreach ($components as $key => $value) {
115 unset($components[$key]);
119 if (isset($components['modulus']) && isset($components['publicExponent'])) {
120 if (count($components) == 3) {
121 $components['isPublicKey'] = true;
[all …]
H A DMSBLOB.php123 $components = ['isPublicKey' => $publickey];
145 $components['isPublicKey'] = false;
158 …$components[$components['isPublicKey'] ? 'publicExponent' : 'privateExponent'] = new BigInteger(st…
160 $components['modulus'] = new BigInteger(strrev(Strings::shift($key, $bitlen / 8)), 256);
163 return $components;
166 $components['isPublicKey'] = false;
171 $components['primes'][] = new BigInteger(strrev(Strings::shift($key, $bitlen / 16)), 256);
175 … $components['exponents'][] = new BigInteger(strrev(Strings::shift($key, $bitlen / 16)), 256);
178 if (isset($components['privateExponent'])) {
179 $components['publicExponent'] = $components['privateExponent'];
[all …]
H A DPKCS1.php57 $components = ['isPublicKey' => true];
59 $components = ['isPublicKey' => false];
61 $components = [];
73 $components += [
83 $components['primes'][] = $primeInfo['prime'];
88 if (!isset($components['isPublicKey'])) {
89 $components['isPublicKey'] = false;
91 return $components;
100 if (!isset($components['isPublicKey'])) {
101 $components['isPublicKey'] = true;
[all …]
H A DPKCS8.php83 $components = ['isPublicKey' => true];
85 $components = ['isPublicKey' => false];
87 $components = [];
93 if (!isset($components['isPublicKey'])) {
94 $components['isPublicKey'] = false;
98 if (!isset($components['isPublicKey'])) {
99 $components['isPublicKey'] = true;
104 $result = $components + PKCS1::load($key[$type . 'Key']);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DPKCS8.php113 $components = [];
117 $components['QA'] = self::extractPoint("\0" . $key['publicKey'], $components['curve']);
119 return $components;
129 $components['curve']->rangeCheck($components['dA']);
132 … $components['curve']->multiplyPoint($components['curve']->getBasePoint(), $components['dA']);
134 return $components;
144 $components = [];
154 $components['dA'] = $components['curve']->extractSecret(substr($key['privateKey'], 2));
162 $components['QA'] = self::extractPoint($key['publicKey'], $components['curve']);
166 …$components['QA'] = $components['curve']->multiplyPoint($components['curve']->getBasePoint(), $com…
[all …]
H A DPKCS1.php69 $components = [];
101 …if (isset($components['curve']) && self::encodeParameters($ecParams, false, []) != self::encodePar…
105 if (!isset($components['curve'])) {
106 $components['curve'] = $ecParams;
110 $components['curve']->rangeCheck($components['dA']);
113 … $components['curve']->multiplyPoint($components['curve']->getBasePoint(), $components['dA']);
115 return $components;
138 $components = [];
141 $components['QA'] = isset($ecPrivate['publicKey']) ?
143 … $components['curve']->multiplyPoint($components['curve']->getBasePoint(), $components['dA']);
[all …]
H A DPuTTY.php67 $components = parent::load($key, $password);
68 if (!isset($components['private'])) {
69 return $components;
72 $private = $components['private'];
74 $temp = Base64::encode(Strings::packSSH2('s', $components['type']) . $components['public']);
75 … $components = OpenSSH::load($components['type'] . ' ' . $temp . ' ' . $components['comment']);
77 if ($components['curve'] instanceof TwistedEdwardsCurve) {
81 $components['dA'] = $components['curve']->extractSecret($private);
83 list($components['dA']) = Strings::unpackSSH2('i', $private);
84 $components['curve']->rangeCheck($components['dA']);
[all …]
H A DMontgomeryPrivate.php68 $components = ['curve' => $curve];
69 $components['dA'] = new BigInteger($key, 256);
70 $curve->rangeCheck($components['dA']);
72 …$components['QA'] = $components['curve']->multiplyPoint($components['curve']->getBasePoint(), $com…
74 return $components;
/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DCollection.php20 protected $components = []; variable in geoPHP\\Geometry\\Collection
25 * @param Geometry[] $components Array of geometries
26 * @param bool|true $allowEmptyComponents Allow creating geometries with empty components
27 * @param string $allowedComponentType A class the components must be instance of
32 $components = [], argument
36 if (!is_array($components)) {
39 $componentCount = count($components);
41 if ($components[$i] instanceof $allowedComponentType) {
42 if (!$allowEmptyComponents && $components[$i]->isEmpty()) {
45 $components[
[all...]
H A DMultiGeometry.php15 public function __construct($components = [], $allowEmptyComponents = true, $allowedComponentType = Geometry::class) argument
17 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);
32 // A collection is simple if all it's components are simple
33 foreach ($this->components as $component) {
42 // By default, the boundary of a collection is the boundary of it's components
57 foreach ($this->components as $component) {
73 foreach ($this->components as $component) {
87 foreach ($this->components as $component) {
96 foreach ($this->components as $component) {
110 foreach ($this->components a
[all...]
H A DMultiLineString.php11 * @property LineString[] $components
16 public function __construct($components = []) argument
18 parent::__construct($components, true, LineString::class);
24 protected $components = []; variable in geoPHP\\Geometry\\MultiLineString
48 $components = $this->getComponents();
49 foreach ($components as $line) {
72 foreach ($this->components as $line) {
H A DMultiPoint.php15 * @property Point[] $components The elements of a MultiPoint are Points
20 public function __construct($components = []) argument
22 parent::__construct($components, true, Point::class);
59 $componentCount = count($this->components);
62 if ($this->components[$i]->equals($this->components[$j])) {
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Xml/Property/
H A DSupportedCalendarComponentSet.php33 protected $components = []; variable in Sabre\\CalDAV\\Xml\\Property\\SupportedCalendarComponentSet
38 * @param array $components
40 function __construct(array $components) { argument
42 $this->components = $components;
53 return $this->components;
78 foreach ($this->components as $component) {
113 $components = [];
117 $components[] = $elem['attributes']['name'];
121 if (!$components) {
125 return new self($components);
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Property/
H A DSupportedCalendarComponentSet.php33 protected $components = []; variable in Sabre\\CalDAV\\Xml\\Property\\SupportedCalendarComponentSet
38 * @param array $components
40 function __construct(array $components) { argument
42 $this->components = $components;
53 return $this->components;
78 foreach ($this->components as $component) {
113 $components = [];
117 $components[] = $elem['attributes']['name'];
121 if (!$components) {
125 return new self($components);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DXML.php80 $components['p'] = $value;
83 $components['q'] = $value;
86 $components['g'] = $value;
89 $components['y'] = $value;
104 if (!isset($components['y'])) {
109 case !isset($components['p']):
110 case !isset($components['q']):
111 case !isset($components['g']):
112 return ['y' => $components['y']];
115 return $components;
H A DPuTTY.php62 $components = parent::load($key, $password);
63 if (!isset($components['private'])) {
64 return $components;
66 extract($components);
67 unset($components['public'], $components['private']);
/plugin/struct/meta/
H A DInlineConfigParser.php17 * Any component can be placed in double quotes (needed to allow space, dot or question mark in components).
35 // Extract components
38 $components = str_getcsv(trim($parts[0]), '.');
82 if (count($components) == 3) {
84 $lines[] = 'schema: ' . trim($components[1]);
85 $lines[] = 'field: ' . trim($components[2]);
86 $lines[] = 'filter: %pageid% = ' . trim($components[0]);
87 } elseif (count($components) == 2) {
89 $lines[] = 'schema: ' . trim($components[0]);
90 $lines[] = 'field: ' . trim($components[
[all...]
/plugin/structtasks/meta/
H A DAbstractNotifier.php86 $components = [];
90 $components[] = $val;
95 $components[] = $val;
100 $components[] = $val;
102 switch (count($components)) {
106 return $components[0];
108 return $components[0] . ' and ' . $components[1];
110 return $components[0] . ', ' . $components[1] . ', and ' . $components[2];
/plugin/toolbox/
H A DToolboxFindAndReplace.js44 $dialog.components = { class in $dialog
57 $dialog.components.btn_find.click(handle_find);
58 $dialog.components.btn_replace.click(handle_replace);
59 $dialog.components.btn_find_replace.click(handle_find_replace);
60 $dialog.components.btn_replace_all.click(handle_replace_all);
107 var term = $dialog.components.in_find.val();
129 var text = $dialog.components.in_replace.val();
153 var term = $dialog.components.in_find.val();
156 var repl = $dialog.components.in_replace.val();
242 if (!$dialog.components.chk_regexp.prop('checked')) {
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDH.php340 * @param array $components
342 protected static function onLoad($components) argument
344 if (!isset($components['privateKey']) && !isset($components['publicKey'])) {
347 $new = isset($components['privateKey']) ?
352 $new->prime = $components['prime'];
353 $new->base = $components['base'];
355 if (isset($components['privateKey'])) {
356 $new->privateKey = $components['privateKey'];
358 if (isset($components['publicKey'])) {
359 $new->publicKey = $components['publicKey'];
H A DDSA.php231 * @param array $components
233 protected static function onLoad($components) argument
239 if (!isset($components['x']) && !isset($components['y'])) {
241 } elseif (isset($components['x'])) {
243 $new->x = $components['x'];
248 $new->p = $components['p'];
249 $new->q = $components['q'];
250 $new->g = $components['g'];
252 if (isset($components['y'])) {
253 $new->y = $components['y'];
H A DRSA.php454 * @param array $components
456 protected static function onLoad($components) argument
458 $key = $components['isPublicKey'] ?
462 $key->modulus = $components['modulus'];
466 if ($components['isPublicKey'] || !isset($components['privateExponent'])) {
471 $key->primes = $components['primes'];
472 $key->exponents = $components['exponents'];
476 if ($components['format'] == PSS::class) {
485 if (isset($components['hash'])) {
488 if (isset($components['MGFHash'])) {
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OSConfig/
H A DOSPolicyResourceRepositoryResourceAptRepository.php30 public $components; variable in Google\\Service\\OSConfig\\OSPolicyResourceRepositoryResourceAptRepository
61 public function setComponents($components) argument
63 $this->components = $components;
70 return $this->components;
/plugin/jplayer/components/
H A Drequire.config.js1 var components = { class
18 require.config(components);
20 var require = components;
23 module.exports = components;

12345678910>>...25