Crypt/Base: $block_size -> $this->block_size

This commit is contained in:
terrafrost 2014-12-14 10:48:18 -06:00
parent 31af2b3ed3
commit 4cc23b7006

View File

@ -1001,7 +1001,7 @@ class Crypt_Base
break; break;
case CRYPT_MODE_CBC: case CRYPT_MODE_CBC:
if (!defined('OPENSSL_RAW_DATA')) { 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_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); $plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, $this->openssl_options, $this->decryptIV);