/plugin/odp/ |
H A D | ZipLib.class.php | 98 $fr .= pack("V",0).pack("V",0).pack("V",0).pack("v", strlen($name) ); 99 $fr .= pack("v", 0 ).$name.pack("V", 0).pack("V", 0).pack("V", 0); 105 $cdrec .= pack("V",0).pack("V",0).pack("V",0).pack("v", strlen($name) ); 106 $cdrec .= pack("v", 0 ).pack("v", 0 ).pack("v", 0 ).pack("v", 0 ); 108 $cdrec .= pack("V", 16 ).pack("V", $this -> old_offset ).$name; 139 $fr .= pack('V', $crc).pack('V', $c_len).pack('V', $unc_len); 140 $fr .= pack('v', strlen($name)).pack('v', 0).$name.$zdata; 142 $fr .= pack('V', $crc).pack('V', $c_len).pack('V', $unc_len); 149 $cdrec .= $hexdtime.pack('V', $crc).pack('V', $c_len).pack('V', $unc_len); 150 $cdrec .= pack('v', strlen($name) ).pack('v', 0 ).pack('v', 0 ); [all …]
|
/plugin/sphinxsearch-was/ |
H A D | sphinxapi.php | 159 return pack("NN", $h, $l); 179 return pack("NN", $h, $l); 191 return pack("NN", $h, $l); 196 return pack("NN", 0, $v); 215 return pack("NN", $h, $l); 935 return pack("N", $t2); 991 $req .= pack("N", 0); 994 $req .= pack("N", 1); 1003 $req .= pack("N", strlen($idx)) . $idx . pack("N", $weight); 1011 $req .= pack("N", strlen($field)) . $field . pack("N", $weight); [all …]
|
/plugin/sphinxsearch/ |
H A D | sphinxapi.php | 163 return pack ( "NN", $h, $l ); 185 return pack ( "NN", $h, $l ); 197 return pack ( "NN", $h, $l ); 202 return pack ( "NN", 0, $v ); 222 return pack ( "NN", $h, $l ); 971 return pack ( "N", $t2 ); 1030 $req .= pack ( "N", 0 ); 1034 $req .= pack ( "N", 1 ); 1043 $req .= pack ( "N", strlen($idx) ) . $idx . pack ( "N", $weight ); 1051 $req .= pack ( "N", strlen($field) ) . $field . pack ( "N", $weight ); [all …]
|
/plugin/upgrade/vendor/splitbrain/php-archive/src/ |
H A D | Zip.php | 196 $binary_data = pack( 213 $binary_data = pack('a'.$read_size, $buffer); 220 $binary_data = pack('VV', $header['crc'], $header['size']); 243 $binary_data = pack('a'.$read_size, $buffer); 482 $this->writebytes(pack('v', 0)); // number of this disk 483 $this->writebytes(pack('v', 0)); // number of the disk with the start of the central directory 484 $this->writebytes(pack('v', 486 $this->writebytes(pack('v', count($this->ctrl_dir))); // total number of entries in the central directory 487 $this->writebytes(pack('V', strlen($ctrldir))); // size of the central directory 488 $this->writebytes(pack(' [all...] |
H A D | Tar.php | 301 $packed = pack("a512", $data); 339 $this->writebytes(pack("a512", substr($data, $s, 512))); 367 $this->writebytes(pack("a512", "")); 368 $this->writebytes(pack("a512", "")); 542 $this->writebytes(pack("a512", substr($name, $s, 512))); 559 $data_first = pack("a100a8a8a8a12A12", $name, $perm, $uid, $gid, $size, $mtime); 560 $data_last = pack("a1a100a6a2a32a32a8a8a155a12", $typeflag, '', 'ustar', '', '', '', '', '', $prefix, ""); 572 $chks = pack("a8", sprintf("%6s ", decoct($chks)));
|
/plugin/jdraw/ |
H A D | jdraw.php | 4 <title>Diagram editor <?php echo pack("H*", $_GET["name"]); ?></title> 43 … ARCHIVE = "<?php echo pack("H*", $_GET["dokuBase"]); ?>lib/plugins/jdraw/lib/jdraw.jar" \ 63 <applet CODE = "com.hammurapi.jdraw.JDrawApplet.class" ARCHIVE = "<?php echo pack("H*", $_GET["dok… 65 …<PARAM NAME = ARCHIVE VALUE = "<?php echo pack("H*", $_GET["dokuBase"]); ?>lib/plugins/jdraw/lib/j… 95 <APPLET CODE = "com.hammurapi.jdraw.JDrawApplet.class" ARCHIVE = "<?php echo pack("H*", $_GET["doku…
|
/plugin/authgooglesheets/vendor/firebase/php-jwt/src/ |
H A D | JWK.php | 134 $modulus = \pack('Ca*a*', 2, self::encodeLength(\strlen($mod)), $mod); 135 $publicExponent = \pack('Ca*a*', 2, self::encodeLength(\strlen($exp)), $exp); 137 $rsaPublicKey = \pack( 146 … $rsaOID = \pack('H*', '300d06092a864886f70d0101010500'); // hex version of MA0GCSqGSIb3DQEBAQUA 150 $rsaPublicKey = \pack( 179 $temp = \ltrim(\pack('N', $length), \chr(0)); 181 return \pack('Ca*', 0x80 | \strlen($temp), $temp);
|
/plugin/geophp/vendor/funiq/geophp/src/Adapter/ |
H A D | BinaryWriter.php | 58 return pack('c', $value); 68 return pack('C', $value); 78 return pack($this->isLittleEndian() ? 'V' : 'N', $value); 88 return $this->isLittleEndian() ? pack('d', $value) : strrev(pack('d', $value));
|
/plugin/html2pdf/html2pdf/html2ps/ |
H A D | css.colors.inc.php | 195 $arrr = unpack("C",pack("H2",$matches[1])); 196 $arrg = unpack("C",pack("H2",$matches[2])); 197 $arrb = unpack("C",pack("H2",$matches[3])); 211 $arrr = unpack("C",pack("H2",$matches[1].$matches[1])); 212 $arrg = unpack("C",pack("H2",$matches[2].$matches[2])); 213 $arrb = unpack("C",pack("H2",$matches[3].$matches[3]));
|
/plugin/authradius/ |
H A D | mschap.php | 39 return pack('H*', hash('md4', str2unicode($plain))); 49 return pack('H*', $uni); 56 $chall .= pack('C', 1 + mt_rand() % 255); 82 return pack('H*', hash('md4', $hash)); 87 return substr(pack('H*', hash('sha1', $peerChallenge . $challenge . $username)), 0, 8);
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/ |
H A D | Strings.php | 180 $result .= pack('C', $element); 193 $result .= pack('NN', $element / 4294967296, $element); 202 $result .= pack('N', $element); 208 $result .= pack('Na*', strlen($element), $element); 215 $result .= pack('Na*', strlen($element), $element); 222 $result .= pack('Na*', strlen($element), $element); 296 $str .= pack( 399 $var = substr_replace($var, pack('N', $temp['num'] + 1), -$i, 4); 411 $temp = substr(pack('N', $temp['num'] + 1), -$remainder);
|
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/ |
H A D | Base32.php | 163 return \pack('C', $src + $diff); 182 return \pack('C', $src + $diff); 251 $dest .= \pack( 282 $dest .= \pack( 302 $dest .= \pack( 320 $dest .= \pack( 335 $dest .= \pack( 347 $dest .= \pack( 357 $dest .= \pack( 363 $dest .= \pack(
|
H A D | Hex.php | 52 $hex .= pack( 80 $hex .= pack( 135 $bin .= \pack('C', $c_acc | $c_val);
|
H A D | Base64.php | 169 $dest .= \pack( 186 $dest .= \pack( 194 $dest .= \pack( 268 return \pack('C', $src + $diff);
|
H A D | Base32Hex.php | 90 return \pack('C', $src); 109 return \pack('C', $src);
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
H A D | Salsa20.php | 321 $iv = pack('V', $this->counter) . $this->p2; 333 $block ^= static::salsa20($this->p1 . pack('V', $i++) . $this->p2); 358 $iv = pack('V', $buffer['counter']) . $this->p2; 373 … $block ^= static::salsa20($this->p1 . pack('V', $buffer['counter']++) . $this->p2); 377 $temp = static::salsa20($this->p1 . pack('V', $buffer['counter']++) . $this->p2); 383 $iv = pack('V', $buffer['counter']) . $this->p2; 395 … $block ^= static::salsa20($this->p1 . pack('V', $buffer['counter']++) . $this->p2); 490 return pack('V*', ...$x); 526 pack('V', strlen($this->aad)) . "\0\0\0\0" . 527 pack('V', strlen($ciphertext)) . "\0\0\0\0"
|
/plugin/zip/pear/File/Archive/Writer/ |
H A D | Tar.php | 84 $blockbeg = pack("a100a8a8a8a12a12", 93 $blockend = pack("a1a100a6a2a32a32a8a8a155a12", 113 $checksum = pack("a8",sprintf("%6s ",decoct($checksum))); 128 return pack("a".(512 - $size%512), ""); 176 $this->innerWriter->writeData(pack("a1024", ""));
|
H A D | Zip.php | 131 pack("VVVvvvvvVV", 163 pack("VVVvv", 179 pack("VVVvvvvvVV", 220 $data = pack('VVV', $info['mtime'], $info['crc'], $info['nlength']).$data; 247 pack("vvVVv",
|
/plugin/farmer/3rdparty/ |
H A D | PHPIco.php | 160 $data = pack('vvv', 0, 1, count($this->images)); 168 $data .= pack( 244 $data = pack('VVVvvVVVVVV', 40, $width, ($height * 2), 1, 32, 0, 0, 0, 0, 0, 0); 247 $data .= pack('V', $color); 250 $data .= pack('N', $opacity);
|
/plugin/icons/syntax/ |
H A D | icon.php | 63 $pack = null; 105 list($pack, $icon) = explode('>', trim($match), 2); 109 return array($pack, $icon, explode('&', rtrim($flags, '&')), $title, $url, $match, $state, $pos); 127 list($pack, $icon, $flags, $title, $url) = $data; 128 $this->parseFlags($pack, $icon, $flags); 133 $icon_pack = $this->getFlag('pack'); 144 $this->classes[] = $this->getFlag('pack'); 145 $this->classes[] = sprintf('%s-%s', $this->getFlag('pack'), $icon); 204 $class_icon = sprintf('syntax_plugin_icons_%s', $this->getFlag('pack')); 209 $class_icon = sprintf('syntax_plugin_icons_%s', $this->getFlag('pack')); 239 parseFlags($pack, $icon, $flags) global() argument [all...] |
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/ |
H A D | MSBLOB.php | 212 $key = pack('aavV', chr(self::PRIVATEKEYBLOB), chr(2), 0, self::CALG_RSA_KEYX); 213 $key .= pack('VVa*', self::RSA2, 8 * strlen($n), $e); 237 $key = pack('aavV', chr(self::PUBLICKEYBLOB), chr(2), 0, self::CALG_RSA_KEYX); 238 $key .= pack('VVa*', self::RSA1, 8 * strlen($n), $e);
|
/plugin/swiftmail/Swift/Authenticator/ |
H A D | CRAMMD5.php | 60 $password = pack('H32', md5($password)); 68 $inner = pack('H32', md5($k_ipad.$challenge));
|
/plugin/elwikiupgrade/ |
H A D | VerboseTarLib.class.php | 270 $packed = pack("a512", $data); 303 $this->writebytes(pack("a512", substr($data, $s, 512))); 323 $this->writebytes(pack("a512", "")); 324 $this->writebytes(pack("a512", "")); 457 $this->writebytes(pack("a512", substr($name, $s, 512))); 474 $data_first = pack("a100a8a8a8a12A12", $name, $perm, $uid, $gid, $size, $mtime); 475 …$data_last = pack("a1a100a6a2a32a32a8a8a155a12", $typeflag, '', 'ustar', '', '', '', '', '', $pre… 485 $chks = pack("a8", sprintf("%6s ", decoct($chks)));
|
/plugin/webdav/vendor/sabre/http/lib/Auth/ |
H A D | AWS.php | 224 $key = pack('H*', sha1($key)); 229 $hmac = pack('H*', sha1(($key ^ $opad) . pack('H*', sha1(($key ^ $ipad) . $message))));
|
/plugin/davcal/vendor/sabre/http/lib/Auth/ |
H A D | AWS.php | 224 $key = pack('H*', sha1($key)); 229 $hmac = pack('H*', sha1(($key ^ $opad) . pack('H*', sha1(($key ^ $ipad) . $message))));
|