Home
last modified time | relevance | path

Searched refs:decode (Results 1 – 25 of 269) sorted by relevance

1234567891011

/plugin/idoit/
H A Dsyntax.php108 return 'JSON decode error: Maximum stack depth exceeded';
110 return 'JSON decode error: Underflow or the modes mismatch';
112 return 'JSON decode error: Unexpected control character found';
114 return 'JSON decode error: Syntax error, malformed JSON';
116 return 'JSON decode error: Malformed UTF-8 characters, possibly incorrectly encoded';
118 return 'JSON decode error: unknown';
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
H A DEncoding.php67 return Base32::decode($str);
115 return Base32Hex::decode($str);
151 return Base64::decode($str);
179 return Base64DotSlash::decode($str);
207 return Base64DotSlashOrdered::decode($str);
233 return Hex::decode($hex_string);
258 return Hex::decode($bin_string);
H A DRFC4648.php62 return Base64::decode($str, true);
90 return Base64UrlSafe::decode($str, true);
173 return Hex::decode($str, true);
/plugin/gtime/gtlib/asn1/cms/
H A DCMSSignerInfo.php68 public function decode($object) { function in CMSSignerInfo
93 $sid->decode($object->getObjectAt(1));
98 $digestAlgorithm->decode($object->getObjectAt(2));
119 $attribute->decode($a);
135 $attribute->decode($a);
152 $signatureAlgorithm->decode($item);
H A DCMSEncapsulatedContentInfo.php59 public function decode($object) { function in CMSEncapsulatedContentInfo
134 $sequence = ASN1DER::decode($this->content);
137 $content->decode($sequence);
H A DCMSSignedData.php71 public function decode($object) { function in CMSSignedData
106 $digestAlgorithm->decode($item);
114 $encapsulatedContent->decode($object->getObjectAt(2));
176 $signerInfo->decode($info);
/plugin/gtime/gtlib/asn1/tsp/
H A DTSPTimeStampResp.php58 public function decode($object) { function in TSPTimeStampResp
69 $status->decode($object->getObjectAt(0));
82 $token->decode($object->getObjectAt(1));
H A DTSPTSTInfo.php79 public function decode($object) { function in TSPTSTInfo
112 $messageImprint->decode($object->getObjectAt(2));
143 $accuracy->decode($item);
165 $tsa->decode($item->getObject());
181 $extension->decode($set->getObjectAt($i));
H A DTSPMessageImprint.php60 public function decode($object) { function in TSPMessageImprint
71 $hashAlgorithm->decode($object->getObjectAt(0));
/plugin/jcapture/lib/
H A Dcommons-codec-1.3.jar ... .codec.Decoder { public abstract byte[] decode (byte[]) throws org.apache. ...
/plugin/jdraw/lib/
H A Dcommons-codec-1.3.jar ... .codec.Decoder { public abstract byte[] decode (byte[]) throws org.apache. ...
/plugin/gtime/gtlib/asn1/gt/
H A DGTCertTokenResponse.php56 public function decode($object) { function in GTCertTokenResponse
67 $status->decode($object->getObjectAt(0));
86 $token->decode($tag->getObjectAs(ASN1_TAG_SEQUENCE));
H A DGTTimeSignature.php67 public function decode($object) { function in GTTimeSignature
70 $object = ASN1DER::decode($object);
98 $publishedData->decode($object->getObjectAt(2));
117 $pkSignature->decode($sequence);
H A DGTSignatureInfo.php58 public function decode($object) { function in GTSignatureInfo
69 $algorithm->decode($object->getObjectAt(0));
H A DGTCertToken.php61 public function decode($object) { function in GTCertToken
80 $publishedData->decode($object->getObjectAt(2));
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Serializers/
H A DSmartSerializer.php58 return $this->decode($data);
65 return $this->decode($data);
77 private function decode(?string $data): array function in Elasticsearch\\Serializers\\SmartSerializer
/plugin/pureldap/vendor/freedsx/asn1/
H A DREADME.md41 To decode an ASN.1 structure you can get an encoder and call decode then parse it out:
52 # Get a BER encoder instance, call decode on it, and $pdu will now be a sequence object.
53 $pdu = Encoders::ber()->decode($bytes);
55 # You could also decode using DER, if that's what you're expecting...
56 $pdu = Encoders::der()->decode($bytes);
/plugin/gtime/gtlib/http/
H A DGTHttpClient.php74 $response->decode(ASN1DER::decode($bytes));
113 $response->decode(ASN1DER::decode($bytes));
195 $response->decode(ASN1DER::decode($bytes));
/plugin/freechat/phpfreechat/src/
H A Dpfcjson.class.php45 function decode($v) function in pfcJSON
48 return $this->json->decode($v);
/plugin/authgooglesheets/vendor/firebase/php-jwt/
H A DREADME.md47 $decoded = JWT::decode($jwt, new Key($key, 'HS256'));
66 $decoded = JWT::decode($jwt, new Key($key, 'HS256'));
111 $decoded = JWT::decode($jwt, new Key($publicKey, 'RS256'));
155 $decoded = JWT::decode($jwt, new Key($publicKey, 'RS256'));
186 $decoded = JWT::decode($jwt, new Key($publicKey, 'EdDSA'));
202 // objects. Pass this as the second parameter to JWT::decode.
203 JWT::decode($payload, JWK::parseKeySet($jwks));
216 $decoded = JWT::decode($payload, $keys);
248 - Add `array` type hinting to `decode` method
271 - Require a non-empty key to decode and verify a JWT. See
[all …]
/plugin/gtime/gtlib/util/
H A DGTBase64.php56 public static function decode($string) { function in GTBase64
57 return self::getInstance()->decode($string);
H A DGTBase32.php69 public static function decode($string) { function in GTBase32
70 return self::getInstance()->decode($string);
H A DGTBase16.php83 public static function decode($string) { function in GTBase16
84 return self::getInstance()->decode($string);
/plugin/socialshareprivacy2/JC/
H A Djquery.cookie.js63 var decode = config.raw ? raw : decoded;
68 var name = decode(parts.shift());
69 var cookie = decode(parts.join('='));
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/
H A DDecoder.php71 public function decode($offset) function in MaxMind\\Db\\Reader\\Decoder
92 list($result) = $this->decode($pointer);
175 list($value, $offset) = $this->decode($offset);
241 list($key, $offset) = $this->decode($offset);
242 list($value, $offset) = $this->decode($offset);

1234567891011