Home
last modified time | relevance | path

Searched refs:encrypt_block_size (Results 1 – 1 of 1) sorted by last modified time

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php368 private $encrypt_block_size = 8;
1915 $this->encrypt_block_size = $this->encrypt->getBlockLengthInBytes();
1921 while ($this->encrypt_block_size > strlen($iv)) {
1924 $this->encrypt->setIV(substr($iv, 0, $this->encrypt_block_size));
3485 $this->decrypt_block_size = $this->encrypt_block_size = 8;
4313 // round up to the nearest $this->encrypt_block_size
4314 $packet_length += (($this->encrypt_block_size - 1) * $packet_length) % $this->encrypt_block_size;
384 var $encrypt_block_size = 8; global() variable in phpseclib\\Net\\SSH2