Home
last modified time | relevance | path

Searched refs:decoded (Results 1 – 25 of 52) sorted by last modified time

123

/plugin/aichat/vendor/vanderlee/php-sentence/doc/resources/
H A Dcombined.js27 function decoded(s) { function
70 var decode = config.raw ? raw : decoded;
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js324 this.nativeCol = decoded.col + offset;
326 this.nativeRow = decoded.row + offset;
2525 col: decoded.left,
2526 row: decoded.top
2529 col: decoded.right,
2530 row: decoded.bottom
4915 var decoded = colCache.decode(range);
4916 var top = decoded.top,
4917 left = decoded.left,
4918 bottom = decoded.bottom,
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dper-request-configuration.asciidoc91 could be decoded. In the second example, it was simply a string.
H A Dserializers.asciidoc37 encoded as JSON, it is decoded into an array using `json_decode`. Otherwise, it
83 When decoding the response body, everything is decoded to JSON from JSON. If the
125 When decoding the response body, everything is decoded to JSON from JSON. If the
H A Dconnecting.asciidoc260 decoded version of the JSON that {es} returns:
/plugin/elasticsearch/helper/
H A Ddocparser.php156 ($decoded = json_decode($result, true)) === null
164 if (isset($decoded[0]) && is_array($decoded[0])) {
165 $decoded = $decoded[0];
170 if (!blank($decoded[$from])) $data[$to] = trim($decoded[$from]);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DREADME.md185 associative array containing a decoded version of the JSON that Elasticsearch returns:
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPKCS1.php164 $decoded = ASN1::extractBER($key);
165 if ($decoded !== false) {
166 $key = $decoded;
H A DPKCS8.php338 $decoded = self::preParse($key);
370 $decoded = ASN1::decodeBER($key);
371 if (empty($decoded)) {
434 if (empty($decoded)) {
662 $decoded = ASN1::extractBER($key);
663 if ($decoded !== false) {
664 $key = $decoded;
670 $decoded = ASN1::decodeBER($key);
671 if (empty($decoded)) {
675 return $decoded;
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DPKCS1.php72 $decoded = parent::load($matches[0], $password);
73 $decoded = ASN1::decodeBER($decoded);
74 if (empty($decoded)) {
88 $decoded = parent::load($matches[0], '');
89 $decoded = ASN1::decodeBER($decoded);
90 if (empty($decoded)) {
93 $ecParams = ASN1::asn1map($decoded[0], Maps\ECParameters::MAP);
120 $decoded = ASN1::decodeBER($key);
121 if (empty($decoded)) {
125 $key = ASN1::asn1map($decoded[0], Maps\ECParameters::MAP);
[all …]
H A DPKCS8.php107 $decoded = ASN1::decodeBER($key[$type . 'Algorithm']['parameters']->element);
108 $params = ASN1::asn1map($decoded[0], Maps\ECParameters::MAP);
122 $decoded = ASN1::decodeBER($key['privateKey']);
123 $key = ASN1::asn1map($decoded[0], Maps\ECPrivateKey::MAP);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature/
H A DASN1.php47 $decoded = Encoder::decodeBER($sig);
48 if (empty($decoded)) {
51 $components = Encoder::asn1map($decoded[0], EcdsaSigValue::MAP);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DEC.php280 $decoded = ASN1::extractBER($params);
281 $decoded = ASN1::decodeBER($decoded);
282 $decoded = ASN1::asn1map($decoded[0], ECParameters::MAP);
283 if (isset($decoded['namedCurve'])) {
284 $this->curveName = $decoded['namedCurve'];
285 return $decoded['namedCurve'];
292 return $decoded;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DPSS.php124 $decoded = ASN1::decodeBER($key[$type . 'KeyAlgorithm']['parameters']);
125 if ($decoded === false) {
128 $params = ASN1::asn1map($decoded[0], Maps\RSASSA_PSS_params::MAP);
134 $decoded = ASN1::decodeBER($params['maskGenAlgorithm']['parameters']);
135 if ($decoded === false) {
138 … $params['maskGenAlgorithm']['parameters'] = ASN1::asn1map($decoded[0], Maps\HashAlgorithm::MAP);
H A DPKCS1.php66 $decoded = ASN1::decodeBER($key);
67 if (empty($decoded)) {
71 $key = ASN1::asn1map($decoded[0], Maps\RSAPrivateKey::MAP);
94 $key = ASN1::asn1map($decoded[0], Maps\RSAPublicKey::MAP);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPublicKey.php175 $decoded = ASN1::decodeBER($em);
176 if (!is_array($decoded) || empty($decoded[0]) || strlen($em) > $decoded[0]['length']) {
198 $decoded = ASN1::asn1map($decoded[0], DigestInfo::MAP);
199 if (!isset($decoded) || $decoded === false) {
203 if (!isset($oids[$decoded['digestAlgorithm']['algorithm']])) {
207 …if (isset($decoded['digestAlgorithm']['parameters']) && $decoded['digestAlgorithm']['parameters'] …
211 $hash = $decoded['digestAlgorithm']['algorithm'];
217 $em2 = $decoded['digest'];
/plugin/authgooglesheets/
H A Dhelper.php71 $decoded = json_decode($userCache->retrieveCache(), true);
76 if (empty($decoded) || !$userCache->useCache($depends)) {
106 $this->users = $decoded['users'] ?? null;
107 $this->columnMap = $decoded['columnMap'] ?? null;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DPKCS1.php59 $decoded = ASN1::decodeBER($key);
60 if (empty($decoded)) {
64 $key = ASN1::asn1map($decoded[0], Maps\DSAParams::MAP);
69 $key = ASN1::asn1map($decoded[0], Maps\DSAPrivateKey::MAP);
74 $key = ASN1::asn1map($decoded[0], Maps\DSAPublicKey::MAP);
H A DPKCS8.php94 $decoded = ASN1::decodeBER($key[$type . 'Algorithm']['parameters']->element);
95 if (empty($decoded)) {
98 $components = ASN1::asn1map($decoded[0], Maps\DSAParams::MAP);
103 $decoded = ASN1::decodeBER($key[$type]);
104 if (empty($decoded)) {
109 $components[$var] = ASN1::asn1map($decoded[0], Maps\DSAPublicKey::MAP);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md217 key/value both in encoded as well as decoded form to those methods. This is
H A DREADME.md754 …not be created by URI producers and, when found in a URI, should be decoded to their corresponding…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats/Keys/
H A DPKCS1.php52 $decoded = ASN1::decodeBER($key);
53 if (empty($decoded)) {
57 $components = ASN1::asn1map($decoded[0], Maps\DHParameter::MAP);
H A DPKCS8.php90 $decoded = ASN1::decodeBER($key[$type . 'Algorithm']['parameters']->element);
91 if (empty($decoded)) {
94 $components = ASN1::asn1map($decoded[0], Maps\DHParameter::MAP);
99 $decoded = ASN1::decodeBER($key[$type]);
101 case empty($decoded):
102 case !is_array($decoded):
103 case !isset($decoded[0]['content']):
104 case !$decoded[0]['content'] instanceof BigInteger:
107 $components[$type] = $decoded[0]['content'];
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature/
H A DASN1.php47 $decoded = Encoder::decodeBER($sig);
48 if (empty($decoded)) {
51 $components = Encoder::asn1map($decoded[0], Maps\DssSigValue::MAP);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md131 * Feature: report original content encoding and length on decoded responses.
1188 * Cookies are no longer URL decoded by default
1329 * Exception is thrown when JSON response body cannot be decoded

123