Home
last modified time | relevance | path

Searched refs:packet (Results 1 – 4 of 4) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/
H A DIdentity.php275 $packet = Strings::packSSH2(
282 $packet = Strings::packSSH2('s', $packet);
283 if (strlen($packet) != fputs($this->fsock, $packet)) {
288 $packet = $this->readBytes($length);
290 list($type, $signature_blob) = Strings::unpackSSH2('Cs', $packet);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php1824 $packet = pack(
1829 $this->send_binary_packet($packet);
1945 $packet = pack('C', NET_SSH2_MSG_NEWKEYS);
1946 $this->send_binary_packet($packet);
2397 $packet = Strings::packSSH2('Cs', NET_SSH2_MSG_SERVICE_REQUEST, 'ssh-userauth');
2398 $this->send_binary_packet($packet);
2445 $packet = Strings::packSSH2(
2453 $this->send_binary_packet($packet);
2471 $packet = Strings::packSSH2(
2496 $this->send_binary_packet($packet, $logged);
[all …]
H A DSFTP.php556 $packet = Strings::packSSH2(
564 $this->send_binary_packet($packet);
576 $packet = Strings::packSSH2(
584 $this->send_binary_packet($packet);
666 $packet = Strings::packSSH2('ss', 'version-select', "$ver");
667 $this->send_sftp_packet(NET_SFTP_EXTENDED, $packet);
1509 $packet = Strings::packSSH2('s', $filename);
1510 $this->send_sftp_packet($type, $packet);
1572 $packet = Strings::packSSH2('s', $filename);
1573 $packet .= $this->version >= 5 ?
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php165 $packet = pack('NC', 1, self::SSH_AGENTC_REQUEST_IDENTITIES);
166 if (strlen($packet) != fputs($this->fsock, $packet)) {
171 $packet = $this->readBytes($length);
173 list($type, $keyCount) = Strings::unpackSSH2('CN', $packet);
180 list($key_blob, $comment) = Strings::unpackSSH2('ss', $packet);