mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-14 17:34:07 +00:00
removed initialization where not needed
This commit is contained in:
parent
05cdd09f52
commit
5c8966334e
@ -127,7 +127,7 @@ class DES extends BlockCipher
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private $kl = [];
|
||||
private $kl;
|
||||
|
||||
/**
|
||||
* Shuffle table.
|
||||
|
@ -128,7 +128,7 @@ abstract class EC extends AsymmetricKey
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $sigFormat = '';
|
||||
protected $sigFormat;
|
||||
|
||||
/**
|
||||
* Create public / private key pair.
|
||||
|
@ -43,7 +43,7 @@ class KoblitzPrime extends Prime
|
||||
/**
|
||||
* @var list<array{a: BigInteger, b: BigInteger}>
|
||||
*/
|
||||
public $basis = [];
|
||||
public $basis;
|
||||
|
||||
/**
|
||||
* @var object
|
||||
|
@ -173,7 +173,7 @@ class Hash
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
private $blockSize = 0;
|
||||
private $blockSize;
|
||||
|
||||
/**#@+
|
||||
* UMAC variables
|
||||
|
Loading…
Reference in New Issue
Block a user