/plugin/photogallery/phpThumb/ |
H A D | phpthumb.ico.php | 30 $icXOR[$key] = ''; 39 if ($bpp[$key] == 32) { 41 } elseif ($bpp[$key] == 24) { 53 $icANDmask[$key][$y] .= '0'; 56 $icAND[$key] = ''; 66 $biSizeImage = $ImageWidths[$key] * $ImageHeights[$key] * ($bpp[$key] / 8); 69 $BitmapInfoHeader[$key] = ''; 76 $BitmapInfoHeader[$key] .= chr($bpp[$key])."\x00"; // wBitCount; 102 $dwBytesInRes = 40 + strlen($icXOR[$key]) + strlen($icAND[$key]); 113 $icondata .= $icXOR[$key]; [all …]
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
H A D | PublicKeyLoader.php | 38 * @param string|array $key 62 if ($key) { 63 return $key; 76 * @param string|array $key 81 $key = self::load($key, $password); 85 return $key; 97 $key = self::load($key); 101 return $key; 113 $key = self::load($key); 114 if (!$key instanceof PrivateKey && !$key instanceof PublicKey) { [all …]
|
H A D | Twofish.php | 452 $key = unpack('C*', $this->key); 496 $m3[$q1[$q1[$q0[$i] ^ $key[20]] ^ $key[12]] ^ $key[4]]; 500 $m3[$q1[$q1[$q0[$j] ^ $key[24]] ^ $key[16]] ^ $key[8]]; 520 $A = $m0[$q0[$q0[$q1[$q1[$i] ^ $key[25]] ^ $key[17]] ^ $key[ 9]] ^ $key[1]] ^ 521 $m1[$q0[$q1[$q1[$q0[$i] ^ $key[26]] ^ $key[18]] ^ $key[10]] ^ $key[2]] ^ 522 $m2[$q1[$q0[$q0[$q0[$i] ^ $key[27]] ^ $key[19]] ^ $key[11]] ^ $key[3]] ^ 523 $m3[$q1[$q1[$q0[$q1[$i] ^ $key[28]] ^ $key[20]] ^ $key[12]] ^ $key[4]]; 524 $B = $m0[$q0[$q0[$q1[$q1[$j] ^ $key[29]] ^ $key[21]] ^ $key[13]] ^ $key[5]] ^ 525 $m1[$q0[$q1[$q1[$q0[$j] ^ $key[30]] ^ $key[22]] ^ $key[14]] ^ $key[6]] ^ 526 $m2[$q1[$q0[$q0[$q0[$j] ^ $key[31]] ^ $key[23]] ^ $key[15]] ^ $key[7]] ^ [all …]
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/ |
H A D | PKCS1.php | 46 * @param string $key 64 $key = parent::load($key, $password); 72 if (is_array($key)) { 77 'primes' => [1 => $key['prime1'], $key['prime2']], 78 'exponents' => [1 => $key['exponent1'], $key['exponent2']], 96 if (!is_array($key)) { 104 return $components + $key; 124 $key = [ 143 $key = ASN1::encodeDER($key, Maps\RSAPrivateKey::MAP); 158 $key = [ [all …]
|
H A D | Raw.php | 43 * @param string $key 49 if (!is_array($key)) { 53 $key = array_change_key_case($key, CASE_LOWER); 58 if (isset($key[$index])) { 65 if (isset($key[$index])) { 75 if (isset($key['primes'])) { 77 } elseif (isset($key['p']) && isset($key['q'])) { 84 if (isset($key[$i0]) && isset($key[$i1])) { 85 $components['primes'] = [1 => $key[$i0], $key[$i1]]; 99 if (isset($key[$i0]) && isset($key[$i1])) { [all …]
|
H A D | MSBLOB.php | 83 * @param string $key 89 if (!Strings::is_stringable($key)) { 93 $key = Base64::decode($key); 95 if (!is_string($key)) { 98 if (strlen($key) < 20) { 154 if (strlen($key) != 2 * $baseLength && strlen($key) != 9 * $baseLength) { 214 $key .= $n; 220 $key .= strrev($d->toBytes()); 222 return Base64::encode($key); 239 $key .= $n; [all …]
|
H A D | PKCS8.php | 72 * @param string $key 78 if (!Strings::is_stringable($key)) { 82 if (strpos($key, 'PUBLIC') !== false) { 90 $key = parent::load($key, $password); 92 if (isset($key['privateKey'])) { 106 if (isset($key['meta'])) { 107 $result['meta'] = $key['meta']; 130 $key = ASN1::extractBER($key); 145 $key = PKCS1::savePublicKey($n, $e); 146 $key = ASN1::extractBER($key); [all …]
|
/plugin/settingstree/settings/ |
H A D | settingslevel.class.php | 37 function getCurrent($key){ argument 62 function getDefault($key){ argument 76 function getLocal($key){ argument 90 if (@$this->_values[$key]['protect']){ return $this->getCurrentNoProt($key); } 136 $ret[$key] = $this->getCurrent($key); 149 $this->_settings[$key] = new settingswrapper($key,$this,$meta,$this->_values[$key]); 163 if ($set[$key]->_value !== null && $par_val !== $set[$key]->_value){ 189 foreach ($keys as $key){ 190 $set[$key]->markChanged($key); 290 $ret[$key] = $this->getCurrent($key); [all …]
|
H A D | settingshierarchy.class.php | 31 function getLang($key){ argument 32 return $this->_getLang($key); 38 if (!($ret = @$lang['en'][$key])){ 123 $return[$key] = $meta; 144 function getDefault($key){ return @$this->_defaults[$key]; } argument 145 function getLocal($key){ return self::_getlocal($key,$this->_pluginname); } argument 146 function getProtected($key){ return self::_getprotected($key,$this->_pluginname); } argument 147 function isExtended($key){ return self::_isextended($key,$this->_pluginname); } argument 200 function showHierarchy($key){ argument 203 if (!$this->isExtended($key)){ [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient/src/ |
H A D | Model.php | 61 public function __get($key) argument 93 return isset($this->modelData[$key]) ? $this->modelData[$key] : null; 118 $this->$key = $val; 122 unset($array[$key]); 124 $this->$key = $val; 125 unset($array[$key]); 191 $key = $this->getMappedName($key); 217 $key = $this->internal_gapi_mappings[$key]; 219 return $key; 233 foreach ($keys as $key) { [all …]
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/ |
H A D | PKCS1.php | 51 * @param string $key 57 $key = parent::load($key, $password); 65 if (is_array($key)) { 66 return $key; 70 if (is_array($key)) { 71 return $key; 76 return $key; 93 $key = [ 99 $key = ASN1::encodeDER($key, Maps\DSAParams::MAP); 121 $key = [ [all …]
|
H A D | Raw.php | 35 * @param array $key 39 public static function load($key, $password = '') argument 41 if (!is_array($key)) { 46 case !isset($key['p']) || !isset($key['q']) || !isset($key['g']): 47 case !$key['p'] instanceof BigInteger: 48 case !$key['q'] instanceof BigInteger: 49 case !$key['g'] instanceof BigInteger: 50 case !isset($key['x']) && !isset($key['y']): 51 case isset($key['x']) && !$key['x'] instanceof BigInteger: 52 case isset($key['y']) && !$key['y'] instanceof BigInteger: [all …]
|
/plugin/authgoogle/google/cache/ |
H A D | Google_ApcCache.php | 34 private function isLocked($key) { argument 41 private function createLock($key) { argument 44 @apc_add($key . '.lock', '', 5); 47 private function removeLock($key) { argument 49 @apc_delete($key . '.lock'); 61 if ($this->isLocked($key)) { 63 $this->removeLock($key); 76 $this->delete($key); 93 * @param String $key 95 public function delete($key) { argument [all …]
|
/plugin/bibtex/OSBib/create/ |
H A D | SESSION.php | 34 function setVar($key, $value) argument 37 $this->sessionVars[$key] = $value; 45 function getVar($key) argument 47 if(isset($this->sessionVars[$key])) 48 return $this->sessionVars[$key]; 52 function delVar($key) argument 54 if(isset($this->sessionVars[$key])) 55 unset($this->sessionVars[$key]); 58 function issetVar($key) argument 85 foreach($row as $key => $value) [all …]
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/ |
H A D | PKCS8.php | 71 * @param string $key 75 public static function load($key, $password = '') argument 84 if (!Strings::is_stringable($key)) { 90 $key = parent::load($key, $password); 104 return self::loadEdDSA($key); 124 if (isset($key['parameters']) && $params != $key['parameters']) { 142 private static function loadEdDSA(array $key) argument 146 if (isset($key['privateKey'])) { 157 if (isset($key['publicKey'])) { 237 $key = [ [all …]
|
/plugin/elasticsearch/vendor/ruflin/elastica/src/ |
H A D | Param.php | 49 * Sets (overwrites) the value at the given key. 51 * @param string $key Key to set 56 public function setParam($key, $value) argument 58 $this->_params[$key] = $value; 82 * @param string $key Param key 87 public function addParam($key, $value, ?string $subKey = null) argument 90 $this->_params[$key][$subKey] = $value; 92 $this->_params[$key][] = $value; 101 * @param string $key Ke 107 getParam($key) global() argument 123 hasParam($key) global() argument 191 _setRawParam($key, $value) global() argument [all...] |
H A D | Document.php | 53 public function __get(string $key) argument 55 return $this->get($key); 61 public function __set(string $key, $value): void argument 63 $this->set($key, $value); 66 public function __isset(string $key): bool argument 68 return $this->has($key) && null !== $this->get($key); 71 public function __unset(string $key): void argument 73 $this->remove($key); 79 * @param mixed $key 85 get($key) global() argument 101 set(string $key, $value) global() argument 114 has(string $key) global() argument 124 remove(string $key) global() argument 149 addFile(string $key, string $filepath, string $mimeType = '') global() argument 165 addFileContent(string $key, string $content) global() argument 177 addGeoPoint(string $key, float $latitude, float $longitude) global() argument [all...] |
/plugin/authgooglesheets/vendor/google/auth/src/Cache/ |
H A D | MemoryCacheItemPool.php | 61 foreach ($keys as $key) { 62 $items[$key] = $this->hasItem($key) ? clone $this->items[$key] : new $itemClass($key); 74 public function hasItem($key): bool argument 76 $this->isValidKey($key); 78 return isset($this->items[$key]) && $this->items[$key]->isHit(); 101 public function deleteItem($key): bool argument 116 foreach ($keys as $key) { 117 unset($this->items[$key]); 169 * @param string $key 173 private function isValidKey($key) argument [all …]
|
/plugin/memcache/classes/ |
H A D | memcache_fakecache.class.php | 6 protected static function normalize_key($key){ argument 9 $key); 12 protected static function denormalize_key($key){ argument 15 $key); 45 public static function add($key, $val,$ttl = 0){ argument 54 public static function set($key, $val,$ttl = 0){ argument 63 public static function exists($key){ argument 68 public static function del($key){ argument 70 @unlink(static::$ttl_dir.static::normalize_key($key)); 71 return @unlink(static::$cache_dir.static::normalize_key($key)); [all …]
|
H A D | memcache_wincache.class.php | 10 public static function add($key, $val,$ttl = 0){ argument 11 …if (MEMCACHE_CHECK_KEYS && !is_string($key)) trigger_error("The key needs to be string! (note: not… 12 return wincache_ucache_add($key,$val,$ttl); 15 public static function set($key, $val,$ttl = 0){ argument 17 return wincache_ucache_set($key,$val,$ttl); 20 public static function exists($key){ argument 22 return wincache_ucache_exists ($key); 25 public static function del($key){ argument 27 return wincache_ucache_delete ($key); 29 public static function get($key,&$success = false){ argument [all …]
|
H A D | memcache_apc.class.php | 11 public static function add($key, $val,$ttl = 0){ argument 12 …if (MEMCACHE_CHECK_KEYS && !is_string($key)) trigger_error("The key needs to be string! (note: not… 13 return apc_add($key,$val,$ttl); 16 public static function set($key, $val,$ttl = 0){ argument 18 return apc_store($key,$val,$ttl); 21 public static function exists($key){ argument 23 return apc_exists ($key); 26 public static function del($key){ argument 28 return apc_delete ($key); 31 public static function get($key,&$success = false){ argument [all …]
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Cache/ |
H A D | FilesystemTest.php | 41 $dir = \dirname($key); 47 file_put_contents($key, $content); 49 $this->cache->load($key); 60 $this->cache->load($key); 70 $this->assertFileNotExists($key); 76 $this->assertFileExists($key); 93 $this->assertFileNotExists($key); 138 @mkdir($key, 0777, true); 139 $this->assertTrue(is_dir($key)); 148 $dir = \dirname($key); [all …]
|
/plugin/authgooglesheets/vendor/google/auth/src/ |
H A D | CacheTrait.php | 53 $key = $this->getFullCacheKey($k); 54 if (is_null($key)) { 77 $key = $this->getFullCacheKey($k); 78 if (is_null($key)) { 89 * @param null|string $key 92 private function getFullCacheKey($key) argument 94 if (is_null($key)) { 98 $key = $this->cacheConfig['prefix'] . $key; 101 $key = preg_replace('|[^a-zA-Z0-9_\.!]|', '', $key); 105 $key = substr(hash('sha256', $key), 0, $this->maxKeyLength); [all …]
|
/plugin/freechat/phpfreechat/data/public/js/ |
H A D | pfcresource.js | 18 setLabel: function(key, value) argument 20 this.labels.set(key,value); 26 if (this.labels.get(key)) 32 return '_'+key+'_'; 37 this.fileurl.set(key,value); 40 getFileUrl: function(key) argument 42 if (this.fileurl.get(key)) 48 setSmiley: function(key, value) argument 52 this.smileyskeys.push(key); 54 getSmiley: function(key) argument [all …]
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/ |
H A D | OpenSSH.php | 67 * @param string $key 73 if (!Strings::is_stringable($key)) { 81 $key = preg_replace('#(?:^-.*?-[\r\n]*$)|\s#ms', '', $key); 82 $key = Base64::decode($key); 83 $magic = Strings::shift($key, 15); 137 $parts = explode(' ', $key, 3); 140 $key = base64_decode($parts[0]); 148 if ($key === false) { 157 if (strlen($key) <= 4) { 161 $publicKey = $key; [all …]
|