mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-05 04:57:53 +00:00
Crypt: $use_inline_crypt is no longer used
This commit is contained in:
parent
34e065fec8
commit
213516128a
@ -452,23 +452,11 @@ abstract class SymmetricKey
|
|||||||
* @see self::encrypt()
|
* @see self::encrypt()
|
||||||
* @see self::decrypt()
|
* @see self::decrypt()
|
||||||
* @see self::setupInlineCrypt()
|
* @see self::setupInlineCrypt()
|
||||||
* @see self::$use_inline_crypt
|
|
||||||
* @var Callback
|
* @var Callback
|
||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
protected $inline_crypt;
|
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
|
* If OpenSSL can be used in ECB but not in CTR we can emulate CTR
|
||||||
*
|
*
|
||||||
|
@ -93,15 +93,6 @@ class RC4 extends StreamCipher
|
|||||||
*/
|
*/
|
||||||
protected $cipher_name_mcrypt = 'arcfour';
|
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
|
* The Key
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user