Home
last modified time | relevance | path

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

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php383 private $decrypt_block_size = 8; variable in phpseclib3\\Net\\SSH2
2008 $this->decrypt_block_size = $this->decrypt->getBlockLengthInBytes();
2014 while ($this->decrypt_block_size > strlen($iv)) {
2017 $this->decrypt->setIV(substr($iv, 0, $this->decrypt_block_size));
3528 $this->decrypt_block_size = $this->encrypt_block_size = 8;
3610 … 'size' => $this->decrypt_block_size, // the total size of this packet to be read from the socket
3668 $this->decrypt->setTag(Strings::pop($raw, $this->decrypt_block_size));
3692 Strings::shift($raw, $this->decrypt_block_size);
3813 …acket->size = $packet_length_header_size + $packet_length + $this->decrypt_block_size; // expect t…
3823 if (strlen($packet->raw) < $this->decrypt_block_size) {
[all …]