From a83166fe4865b109f18d969b392b83c507d9fec7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hans-J=C3=BCrgen=20Petrich?= Date: Sun, 5 May 2013 08:59:44 +0700 Subject: [PATCH] SSH2: Typo (Twofish related..) Typo... --- phpseclib/Net/SSH2.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpseclib/Net/SSH2.php b/phpseclib/Net/SSH2.php index 828a5aa8..6e679e22 100644 --- a/phpseclib/Net/SSH2.php +++ b/phpseclib/Net/SSH2.php @@ -1349,7 +1349,7 @@ class Net_SSH2 { case 'twofish192-ctr': case 'twofish256-ctr': $this->encrypt = new Crypt_Twofish(CRYPT_TWOFISH_MODE_CTR); - $this->decrypt_block_size = 16; + $this->encrypt_block_size = 16; break; case 'arcfour': case 'arcfour128': @@ -3280,4 +3280,4 @@ class Net_SSH2 { } return $this->exit_status; } -} \ No newline at end of file +}