move $enableBlinding property from AsymmetricKey to RSA

This commit is contained in:
terrafrost 2019-06-27 00:30:55 -05:00
parent 25dab4b5ae
commit 0abce39e39
2 changed files with 8 additions and 8 deletions

View File

@ -71,14 +71,6 @@ abstract class AsymmetricKey
*/
private $hmac;
/**
* Enable Blinding?
*
* @var bool
* @access private
*/
protected static $enableBlinding = true;
/**
* Supported plugins (lower case)
*

View File

@ -224,6 +224,14 @@ abstract class RSA extends AsymmetricKey
*/
private static $defaultExponent = 65537;
/**
* Enable Blinding?
*
* @var bool
* @access private
*/
protected static $enableBlinding = true;
/**
* Smallest Prime
*