Crypt: $use_inline_crypt is no longer used

This commit is contained in:
terrafrost 2019-03-23 20:50:10 -05:00
parent 34e065fec8
commit 213516128a
2 changed files with 0 additions and 21 deletions

View File

@ -452,23 +452,11 @@ abstract class SymmetricKey
* @see self::encrypt()
* @see self::decrypt()
* @see self::setupInlineCrypt()
* @see self::$use_inline_crypt
* @var Callback
* @access private
*/
protected $inline_crypt;
/**
* Holds whether performance-optimized $inline_crypt() can/should be used.
*
* @see self::encrypt()
* @see self::decrypt()
* @see self::inline_crypt
* @var mixed
* @access private
*/
protected $use_inline_crypt;
/**
* If OpenSSL can be used in ECB but not in CTR we can emulate CTR
*

View File

@ -93,15 +93,6 @@ class RC4 extends StreamCipher
*/
protected $cipher_name_mcrypt = 'arcfour';
/**
* Holds whether performance-optimized $inline_crypt() can/should be used.
*
* @see \phpseclib\Crypt\Common\SymmetricKey::inline_crypt
* @var mixed
* @access private
*/
protected $use_inline_crypt = false; // currently not available
/**
* The Key
*