From 4cc23b7006154ad162941af955316476b3c884d8 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Sun, 14 Dec 2014 10:48:18 -0600 Subject: [PATCH] Crypt/Base: $block_size -> $this->block_size --- phpseclib/Crypt/Base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpseclib/Crypt/Base.php b/phpseclib/Crypt/Base.php index 9e38f5b2..c2091387 100644 --- a/phpseclib/Crypt/Base.php +++ b/phpseclib/Crypt/Base.php @@ -1001,7 +1001,7 @@ class Crypt_Base break; case CRYPT_MODE_CBC: if (!defined('OPENSSL_RAW_DATA')) { - $padding = str_repeat(chr($this->block_size), $this->block_size) ^ substr($ciphertext, -$block_size); + $padding = str_repeat(chr($this->block_size), $this->block_size) ^ substr($ciphertext, -$this->block_size); $plaintext.= openssl_encrypt($padding, $this->cipher_name_openssl_ecb, $this->key, true); } $plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, $this->openssl_options, $this->decryptIV);