mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-15 01:44:06 +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
|
* @var array
|
||||||
*/
|
*/
|
||||||
private $kl = [];
|
private $kl;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shuffle table.
|
* Shuffle table.
|
||||||
|
@ -128,7 +128,7 @@ abstract class EC extends AsymmetricKey
|
|||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
protected $sigFormat = '';
|
protected $sigFormat;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create public / private key pair.
|
* Create public / private key pair.
|
||||||
|
@ -43,7 +43,7 @@ class KoblitzPrime extends Prime
|
|||||||
/**
|
/**
|
||||||
* @var list<array{a: BigInteger, b: BigInteger}>
|
* @var list<array{a: BigInteger, b: BigInteger}>
|
||||||
*/
|
*/
|
||||||
public $basis = [];
|
public $basis;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var object
|
* @var object
|
||||||
|
@ -173,7 +173,7 @@ class Hash
|
|||||||
/**
|
/**
|
||||||
* @var int
|
* @var int
|
||||||
*/
|
*/
|
||||||
private $blockSize = 0;
|
private $blockSize;
|
||||||
|
|
||||||
/**#@+
|
/**#@+
|
||||||
* UMAC variables
|
* UMAC variables
|
||||||
|
Loading…
Reference in New Issue
Block a user