Home
last modified time | relevance | path

Searched refs:decode (Results 26 – 50 of 269) sorted by path

1234567891011

/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 DHex.php98 public static function decode(string $encodedString, bool $strictPadding = false): string function in ParagonIE\\ConstantTime\\Hex
H A DRFC4648.php62 return Base64::decode($str, true);
90 return Base64UrlSafe::decode($str, true);
173 return Hex::decode($str, true);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DOpenSSH.php82 $key = Base64::decode($key);
H A DPKCS1.php151 $iv = Hex::decode(trim($matches[2]));
H A DPuTTY.php92 $symkey .= Hex::decode(sha1($temp));
211 … $public = Base64::decode(implode('', array_map('trim', array_slice($key, 4, $publicLength))));
241 … $salt = Hex::decode(trim(preg_replace('#Argon2-Salt: ([0-9a-f]+)#', '$1', $key[$offset++])));
264 …$private = Base64::decode(implode('', array_map('trim', array_slice($key, $offset, $privateLength)…
276 $hmac = Hex::decode($hmac);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DXML.php74 $value = new BigInteger(Base64::decode($temp->item(0)->nodeValue), 256);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DPuTTY.php107 $public = Base64::decode($public[1]);
139 $public = Base64::decode($public[1]);
H A DXML.php120 * @param bool $decode optional
123 private static function query($xpath, $name, $error = null, $decode = true) argument
138 … return $decode ? self::decodeValue($result->item(0)->textContent) : $result->item(0)->textContent;
173 return Base64::decode(str_replace(["\r", "\n", ' ', "\t"], '', $value));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DMSBLOB.php93 $key = Base64::decode($key);
H A DXML.php83 $value = new BigInteger(Base64::decode($temp->item(0)->nodeValue), 256);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php1493 $temp = preg_match('#^[a-zA-Z\d/+]*={0,2}$#', $temp) ? Base64::decode($temp) : false;
H A DX509.php2363 $temp = preg_match('#^[a-zA-Z\d/+]*={0,2}$#', $temp) ? Base64::decode($temp) : false;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DBCMath.php112 $temp = new self(Hex::decode($x), 256);
H A DEngine.php179 $x = Hex::encode(~Hex::decode($x));
H A DPHP.php106 $temp = new static(Hex::decode($x), 256);
/plugin/authucenter/lib/uc_client/model/
H A Dbase.php124 function get_setting($k = array(), $decode = FALSE) { argument
130 $return[$arr['k']] = $decode ? unserialize($arr['v']) : $arr['v'];
/plugin/bibtex/OSBib/format/
H A DREADME.txt74 …will return its formatted data in UTF-8 format. If you need to encode or decode your data prior to…
83 Properly decode a multi-byte UTF-8 string.
115 …will return its formatted data in UTF-8 format. If you need to encode or decode your data prior to…
/plugin/ckgdoku/ckeditor/
H A DCHANGES.md745 …): Fixed: [Code Snippet](http://ckeditor.com/addon/codesnippet) does not decode HTML entities when…
/plugin/ckgdoku/fckeditor/editor/filemanager/browser/default/js/
H A DsafeFN_class.js153 decode: function (filename) { method in SafeFN
238 return SafeFN.decode(filename);
/plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/
H A DSafeFN.class.php76 public static function decode($filename) { function in SafeFN
203 return SafeFN::decode($file);
/plugin/ckgdoku/scripts/
H A DsafeFN_class.js157 decode: function (filename) { method in SafeFN
242 return SafeFN.decode(filename);
H A DsafeFN_cmpr.js1decode:function(b){var a=this.safe_to_unicode(b);var d=new Array();for(var c=0;c<a.length;c++){d[c… method in SafeFN
/plugin/ckgedit/ckeditor/
H A DCHANGES.md1165 …ed: [Code Snippet](https://ckeditor.com/cke4/addon/codesnippet) does not decode HTML entities when…
/plugin/ckgedit/fckeditor/editor/filemanager/browser/default/js/
H A DsafeFN_class.js153 decode: function (filename) { method in SafeFN
238 return SafeFN.decode(filename);

1234567891011