Home
last modified time | relevance | path

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

1234567891011

/plugin/ac/
H A Dac.php21 return $json->decode($client->get($this->base_url . '&' .
/plugin/aceeditor/
H A Dbuild.js1 …tmatrix|grp2idx|grpstats|gscatter|haltonset|harmmean|hist3|histfit|hmm(?:decode|estimate|generate|…
/plugin/actickets/
H A Dacclient.php44 return $json->decode($this->client->get($this->base_url . '&' .
/plugin/advanced/lang/en/config/
H A Dusers.txt13 …g you could use the script [[http://www.splitbrain.org/encode.php|encode/decode]]. Due to the much…
/plugin/aichat/vendor/vanderlee/php-sentence/doc/resources/
H A Dcombined.js70 var decode = config.raw ? raw : decoded; variable
75 var name = decode(parts.shift());
76 var cookie = decode(parts.join('='));
/plugin/amcharts/assets/amcharts/plugins/export/
H A Dexport.js2195 function decode( elt ) { function
2239 …tmp = ( decode( b64.charAt( i ) ) << 18 ) | ( decode( b64.charAt( i + 1 ) ) << 12 ) | ( decode( b6…
2246 tmp = ( decode( b64.charAt( i ) ) << 2 ) | ( decode( b64.charAt( i + 1 ) ) >> 4 )
2249 …tmp = ( decode( b64.charAt( i ) ) << 10 ) | ( decode( b64.charAt( i + 1 ) ) << 4 ) | ( decode( b64…
/plugin/amcharts/assets/amcharts/plugins/export/libs/jszip/
H A Djszip.js50 exports.decode = function(input, utf8) { function
554 decode : function(input) { method in JSZip.base64
555 return base64.decode(input);
569 data = base64.decode(data);
700 result = base64.decode(result);
H A Djszip.min.js12decode=function(a){var b,c,e,f,g,h,i,j="",k=0;for(a=a.replace(/[^A-Za-z0-9\+\/\=]/g,"");k<a.length…
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.js1757 function decode (elt) {
1803 …tmp = (decode(b64.charAt(i)) << 18) | (decode(b64.charAt(i + 1)) << 12) | (decode(b64.charAt(i + 2…
1810 tmp = (decode(b64.charAt(i)) << 2) | (decode(b64.charAt(i + 1)) >> 4)
1813 …tmp = (decode(b64.charAt(i)) << 10) | (decode(b64.charAt(i + 1)) << 4) | (decode(b64.charAt(i + 2)…
65603 PNG.decode = function(path, fn) {
65607 return png.decode(function(pixels) {
65873 PNG.prototype.decode = function(fn) {
H A Dpdfmake.min.js16decode=function(e,n){return i.readFile(e,function(e,r){var i;return i=new t(r),i.decode(function(t… method in t
H A Dpdfmake.min.js.map1decode","elt","code","PLUS","PLUS_URL_SAFE","SLASH","SLASH_URL_SAFE","NUMBER","UPPER","LOWER","b64…
/plugin/amcharts/assets/amcharts/plugins/export/libs/xlsx/
H A Dxlsx.js23 …odeAt(0) === 0xFF && data.charCodeAt(1) === 0xFE) { return cptable.utils.decode(1200, char_codes(d…
28 return cptable.utils.decode(current_codepage, [x&255,x>>8])[0];
51 decode: function b64_decode(input, utf8) {
1211 case "base64": return parse(s2a(Base64.decode(blob)), options);
1562 __utf16le = function(b,s,e) { return cptable.utils.decode(1200, b.slice(s,e)); };
1563 __utf8 = function(b,s,e) { return cptable.utils.decode(65001, b.slice(s,e)); };
1564 …__lpstr = function(b,i) { var len = __readUInt32LE(b,i); return len > 0 ? cptable.utils.decode(cur…
1565 …n(b,i) { var len = 2*__readUInt32LE(b,i); return len > 0 ? cptable.utils.decode(1200, b.slice(i+4,…
9170 case "base64": return parse_xlml_xml(Base64.decode(data), opts);
11362 case 'base64': return Base64.decode(f.substr(0,12)).charCodeAt(0);
[all …]
H A Dxlsx.min.js2decode(1200,char_codes(data.substr(2)))}return data};_getchar=function _gc2(x){if(current_codepage…
3decode(blob)),options);case"binary":return parse(s2a(blob),options)}return parse(blob)}var MSSZ=64…
8 …});switch(opts.type||"base64"){case"base64":return parse_xlml_xml(Base64.decode(data),opts);case"b…
9decode(f.substr(0,12)).charCodeAt(0);case"binary":return f.charCodeAt(0);case"array":return f[0];d…
H A Dxlsx.min.map1 …deAt","debom_xml","_getchar","_gc1","x","String","fromCharCode","utils","decode","substr","_gc2","…
/plugin/api/_test/
H A Dpages.test.php69 $data = self::$JSON->decode($response->getContent());
132 $data = self::$JSON->decode($response->getContent());
H A Drest.test.php80 $actualData = dokuwiki_plugin_api_util::$JSON->decode($testResponse->getContent());
/plugin/authgooglesheets/
H A Dcomposer.lock54 …"description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform…
/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/authgooglesheets/vendor/firebase/php-jwt/src/
H A DJWT.php91 public static function decode( function in Firebase\\JWT\\JWT
/plugin/authgooglesheets/vendor/google/auth/src/
H A DAccessToken.php263 $payload = $this->callJwtStatic('decode', [
H A DOAuth2.php1460 return JWT::decode($idToken, $key);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md470 * Added the ability to automatically decode `Content-Encoding` response bodies
472 to decode the response body if it comes over the wire with a
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
H A DBase32.php43 public static function decode(string $encodedString, bool $strictPadding = false): string function in ParagonIE\\ConstantTime\\Base32
H A DBase64.php126 public static function decode(string $encodedString, bool $strictPadding = false): string function in ParagonIE\\ConstantTime\\Base64
H A DEncoderInterface.php51 public static function decode(string $encodedString, bool $strictPadding = false): string; function

1234567891011