/plugin/idoit/ |
H A D | syntax.php | 108 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 D | Encoding.php | 67 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 D | RFC4648.php | 62 return Base64::decode($str, true); 90 return Base64UrlSafe::decode($str, true); 173 return Hex::decode($str, true);
|
/plugin/gtime/gtlib/asn1/cms/ |
H A D | CMSSignerInfo.php | 68 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 D | CMSEncapsulatedContentInfo.php | 59 public function decode($object) { function in CMSEncapsulatedContentInfo 134 $sequence = ASN1DER::decode($this->content); 137 $content->decode($sequence);
|
H A D | CMSSignedData.php | 71 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 D | TSPTimeStampResp.php | 58 public function decode($object) { function in TSPTimeStampResp 69 $status->decode($object->getObjectAt(0)); 82 $token->decode($object->getObjectAt(1));
|
H A D | TSPTSTInfo.php | 79 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 D | TSPMessageImprint.php | 60 public function decode($object) { function in TSPMessageImprint 71 $hashAlgorithm->decode($object->getObjectAt(0));
|
/plugin/jcapture/lib/ |
H A D | commons-codec-1.3.jar | ... .codec.Decoder {
public abstract byte[] decode (byte[]) throws org.apache. ... |
/plugin/jdraw/lib/ |
H A D | commons-codec-1.3.jar | ... .codec.Decoder {
public abstract byte[] decode (byte[]) throws org.apache. ... |
/plugin/gtime/gtlib/asn1/gt/ |
H A D | GTCertTokenResponse.php | 56 public function decode($object) { function in GTCertTokenResponse 67 $status->decode($object->getObjectAt(0)); 86 $token->decode($tag->getObjectAs(ASN1_TAG_SEQUENCE));
|
H A D | GTTimeSignature.php | 67 public function decode($object) { function in GTTimeSignature 70 $object = ASN1DER::decode($object); 98 $publishedData->decode($object->getObjectAt(2)); 117 $pkSignature->decode($sequence);
|
H A D | GTSignatureInfo.php | 58 public function decode($object) { function in GTSignatureInfo 69 $algorithm->decode($object->getObjectAt(0));
|
H A D | GTCertToken.php | 61 public function decode($object) { function in GTCertToken 80 $publishedData->decode($object->getObjectAt(2));
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Serializers/ |
H A D | SmartSerializer.php | 58 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 D | README.md | 41 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 D | GTHttpClient.php | 74 $response->decode(ASN1DER::decode($bytes)); 113 $response->decode(ASN1DER::decode($bytes)); 195 $response->decode(ASN1DER::decode($bytes));
|
/plugin/freechat/phpfreechat/src/ |
H A D | pfcjson.class.php | 45 function decode($v) function in pfcJSON 48 return $this->json->decode($v);
|
/plugin/authgooglesheets/vendor/firebase/php-jwt/ |
H A D | README.md | 47 $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 D | GTBase64.php | 56 public static function decode($string) { function in GTBase64 57 return self::getInstance()->decode($string);
|
H A D | GTBase32.php | 69 public static function decode($string) { function in GTBase32 70 return self::getInstance()->decode($string);
|
H A D | GTBase16.php | 83 public static function decode($string) { function in GTBase16 84 return self::getInstance()->decode($string);
|
/plugin/socialshareprivacy2/JC/ |
H A D | jquery.cookie.js | 63 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 D | Decoder.php | 71 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);
|