mirror of
https://github.com/phpseclib/phpseclib.git
synced 2025-02-09 23:28:33 +00:00
Add #@+ block for properties used by internal implementation.
This commit is contained in:
parent
8ecf956499
commit
2f27620409
@ -159,6 +159,11 @@ class BigInteger
|
|||||||
*/
|
*/
|
||||||
const KARATSUBA_CUTOFF = 25;
|
const KARATSUBA_CUTOFF = 25;
|
||||||
|
|
||||||
|
/**#@+
|
||||||
|
* Static properties used by the pure-PHP implementation.
|
||||||
|
*
|
||||||
|
* @see __construct()
|
||||||
|
*/
|
||||||
protected static $base;
|
protected static $base;
|
||||||
protected static $baseFull;
|
protected static $baseFull;
|
||||||
protected static $maxDigit;
|
protected static $maxDigit;
|
||||||
@ -176,6 +181,7 @@ class BigInteger
|
|||||||
*/
|
*/
|
||||||
protected static $max10Len;
|
protected static $max10Len;
|
||||||
protected static $maxDigit2;
|
protected static $maxDigit2;
|
||||||
|
/**#@-*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the BigInteger's value.
|
* Holds the BigInteger's value.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user