mirror of
https://github.com/danog/phpseclib.git
synced 2024-11-30 04:39:21 +01:00
move $enableBlinding property from AsymmetricKey to RSA
This commit is contained in:
parent
25dab4b5ae
commit
0abce39e39
@ -71,14 +71,6 @@ abstract class AsymmetricKey
|
|||||||
*/
|
*/
|
||||||
private $hmac;
|
private $hmac;
|
||||||
|
|
||||||
/**
|
|
||||||
* Enable Blinding?
|
|
||||||
*
|
|
||||||
* @var bool
|
|
||||||
* @access private
|
|
||||||
*/
|
|
||||||
protected static $enableBlinding = true;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Supported plugins (lower case)
|
* Supported plugins (lower case)
|
||||||
*
|
*
|
||||||
|
@ -224,6 +224,14 @@ abstract class RSA extends AsymmetricKey
|
|||||||
*/
|
*/
|
||||||
private static $defaultExponent = 65537;
|
private static $defaultExponent = 65537;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enable Blinding?
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
* @access private
|
||||||
|
*/
|
||||||
|
protected static $enableBlinding = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Smallest Prime
|
* Smallest Prime
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user