Home
last modified time | relevance | path

Searched refs:encode (Results 76 – 100 of 282) sorted by last modified time

12345678910>>...12

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md282 - URI paths no longer encode the following characters because they are allowed
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPuTTY.php312 $public = Base64::encode($public);
339 $key .= "Argon2-Salt: " . Hex::encode($salt) . "\r\n";
362 $private = Base64::encode($private);
365 $key .= 'Private-MAC: ' . Hex::encode($hash->hash($source)) . "\r\n";
385 chunk_split(Base64::encode($key), 64) .
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DMSBLOB.php222 return Base64::encode($key);
241 return Base64::encode($key);
/plugin/authgooglesheets/vendor/google/auth/src/
H A DOAuth2.php466 return JWT::encode(
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md358 * Note: This has been changed in 5.0.3 to now encode query string values by
788 …le\Parser\Url\UrlParser` as deprecated. Just use PHP's `parse_url()` and percent encode your UTF-8.
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php607 …return "-----BEGIN CERTIFICATE-----\r\n" . chunk_split(Base64::encode($cert), 64) . '-----END CERT…
1898 return strtolower(Hex::encode(pack('N', $hash)));
2334 …return "-----BEGIN CERTIFICATE REQUEST-----\r\n" . chunk_split(Base64::encode($csr), 64) . '-----E…
2440 return 'SPKAC=' . Base64::encode($spkac);
2561 …return "-----BEGIN X509 CRL-----\r\n" . chunk_split(Base64::encode($crl), 64) . '-----END X509 CRL…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
H A DInteger.php330 return Hex::encode($this->toBytes());
/plugin/authgooglesheets/vendor/firebase/php-jwt/
H A DREADME.md8 A simple library to encode and decode JSON Web Tokens (JWT) in PHP, conforming to [RFC 7519](https:…
46 $jwt = JWT::encode($payload, $key, 'HS256');
108 $jwt = JWT::encode($payload, $privateKey, 'RS256');
149 $jwt = JWT::encode($payload, $privateKey, 'RS256');
183 $jwt = JWT::encode($payload, $privateKey, 'EdDSA');
279 - Add support for adding custom, optional JWT headers to `JWT::encode()`. See
/plugin/popupviewer/
H A Daction.php77 $script = 'var JSINFO = '.$json->encode($JSINFO).';';
/plugin/xcom/scripts/
H A DsafeFN_class-cmpr.js1encode:function(a){return this.unicode_to_safe(this.get_u_array(a))},decode:function(b){var a=this… method in SafeFN
H A DsafeFN_class.js140 encode: function(filename) { method in SafeFN
234 return SafeFN.encode(filename);
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Challenge/
H A DAnonymousChallenge.php79 $this->context->setResponse($this->encoder->encode(new Message($data), $this->context));
H A DCramMD5Challenge.php73 $this->context->setResponse($this->encoder->encode($challenge, $this->context));
91 $this->context->setResponse($this->encoder->encode($response, $this->context));
H A DDigestMD5Challenge.php120 return $response === null ? null : $this->encoder->encode($response, $this->context);
190 return $this->encoder->encode($response, $this->context);
H A DPlainChallenge.php88 $this->context->setResponse($this->encoder->encode($message, $this->context));
/plugin/pureldap/vendor/freedsx/asn1/
H A DREADME.md16 To encode an ASN.1 structure you can use the helper methods of the Asn1 class and an encoder:
33 $bytes = Encoders::ber()->encode($asn1);
36 $bytes = Encoders::der()->encode($asn1);
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Encoder/
H A DAnonymousEncoder.php27 public function encode(Message $message, SaslContext $context): string function in FreeDSx\\Sasl\\Encoder\\AnonymousEncoder
H A DDigestMD5Encoder.php81 public function encode(Message $message, SaslContext $context): string function in FreeDSx\\Sasl\\Encoder\\DigestMD5Encoder
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/
H A DCerDerTrait.php143 $child = ['original' => $this->encode($type)];
H A DDerEncoder.php43 public function encode(AbstractType $type): string function in FreeDSx\\Asn1\\Encoder\\DerEncoder
47 return parent::encode($type);
H A DEncoderInterface.php32 public function encode(AbstractType $type): string; function
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapUrl.php267 return $url . '/' . self::encode($this->dn) . $this->getQueryString();
371 return self::encode($v->getDescription());
375 $query[1] = self::encode($this->scope);
378 $query[2] = self::encode($this->filter);
H A DLdapUrlTrait.php49 * Percent-encode certain values in the URL.
54 protected static function encode(?string $value): string
46 protected static function encode(?string $value): string global() function
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DExtendedRequest.php127 $value = $encoder->encode($value);
129 $value = $encoder->encode($value->toAsn1());
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DLdapQueue.php146 $encoded = $this->encoder->encode($message->toAsn1());

12345678910>>...12