mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-12-28 12:10:59 +00:00
Merge branch '1.0' into 2.0
This commit is contained in:
commit
f381b1feb1
@ -1842,7 +1842,7 @@ class SSH2
|
|||||||
$this->encrypt = $this->_encryption_algorithm_to_crypt_instance($encrypt);
|
$this->encrypt = $this->_encryption_algorithm_to_crypt_instance($encrypt);
|
||||||
if ($this->encrypt) {
|
if ($this->encrypt) {
|
||||||
if ($this->crypto_engine) {
|
if ($this->crypto_engine) {
|
||||||
$this->encrypt->setEngine($this->crypto_engine);
|
$this->encrypt->setPreferredEngine($this->crypto_engine);
|
||||||
}
|
}
|
||||||
if ($this->encrypt->block_size) {
|
if ($this->encrypt->block_size) {
|
||||||
$this->encrypt_block_size = $this->encrypt->block_size;
|
$this->encrypt_block_size = $this->encrypt->block_size;
|
||||||
@ -1866,7 +1866,7 @@ class SSH2
|
|||||||
$this->decrypt = $this->_encryption_algorithm_to_crypt_instance($decrypt);
|
$this->decrypt = $this->_encryption_algorithm_to_crypt_instance($decrypt);
|
||||||
if ($this->decrypt) {
|
if ($this->decrypt) {
|
||||||
if ($this->crypto_engine) {
|
if ($this->crypto_engine) {
|
||||||
$this->decrypt->setEngine($this->crypto_engine);
|
$this->decrypt->setPreferredEngine($this->crypto_engine);
|
||||||
}
|
}
|
||||||
if ($this->decrypt->block_size) {
|
if ($this->decrypt->block_size) {
|
||||||
$this->decrypt_block_size = $this->decrypt->block_size;
|
$this->decrypt_block_size = $this->decrypt->block_size;
|
||||||
|
Loading…
Reference in New Issue
Block a user