Home
last modified time | relevance | path

Searched refs:components (Results 26 – 50 of 617) sorted by path

12345678910>>...25

/plugin/archivegenerator/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/archiveupload/
H A DCOPYING162 form) with the major components (compiler, kernel, and so on) of the
/plugin/asana/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/asiansearch/
H A DCOPYING162 form) with the major components (compiler, kernel, and so on) of the
/plugin/attribute/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/authclientcert/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/authdjango/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/authdrupal7/
H A DCOPYING162 form) with the major components (compiler, kernel, and so on) of the
/plugin/authfacebook/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/authg2fa/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/authgoogle2fa/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/authgooglesheets/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/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/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md208 - Handling of URI components in case they are `'0'` in a lot of places,
H A DREADME.md641 Additional methods to work with URI components.
654 Composes a URI reference string from its various components according to
662 …tes a URI from a hash of [`parse_url`](http://php.net/manual/en/function.parse-url.php) components.
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DAsymmetricKey.php169 $components = false;
177 $components = false;
179 if ($components !== false) {
184 if ($components === false) {
188 $components['format'] = $format;
189 $comment = isset($components['comment']) ? $components['comment'] : null;
190 $new = static::onLoad($components);
259 $components = false;
266 if ($components === false) {
270 $components['format'] = $format;
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPuTTY.php180 $components = call_user_func([static::PUBLIC_HANDLER, 'load'], $data);
181 if ($components === false) {
184 $components += $values;
187 return $components;
190 $components = [];
200 $components['type'] = $type = rtrim($key[0]);
208 $components['comment'] = trim(preg_replace('#Comment: (.+)#', '$1', $key[2]));
213 $source = Strings::packSSH2('ssss', $type, $encryption, $components['comment'], $public);
221 $components['public'] = $public;
282 $components['private'] = $private;
[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'];
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats/Keys/
H A DPKCS1.php57 $components = ASN1::asn1map($decoded[0], Maps\DHParameter::MAP);
58 if (!is_array($components)) {
62 return $components;
H A DPKCS8.php94 $components = ASN1::asn1map($decoded[0], Maps\DHParameter::MAP);
95 if (!is_array($components)) {
107 $components[$type] = $decoded[0]['content'];
109 return $components;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DPKCS8.php98 $components = ASN1::asn1map($decoded[0], Maps\DSAParams::MAP);
99 if (!is_array($components)) {
109 $components[$var] = ASN1::asn1map($decoded[0], Maps\DSAPublicKey::MAP);
110 if (!$components[$var] instanceof BigInteger) {
115 $components['meta'] = $key['meta'];
118 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']);
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;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature/
H A DASN1.php51 $components = Encoder::asn1map($decoded[0], Maps\DssSigValue::MAP);
53 return $components;

12345678910>>...25