1 | <?php |
||
16 | final class BigInteger |
||
17 | { |
||
18 | /** |
||
19 | * Holds the BigInteger's value. |
||
20 | * |
||
21 | * @var resource |
||
22 | */ |
||
23 | private $value; |
||
24 | |||
25 | /** |
||
26 | * Converts base-10 and binary strings (base-256) to BigIntegers. |
||
27 | * |
||
28 | * @param \GMP|string $value |
||
29 | * @param int $base |
||
30 | */ |
||
31 | private function __construct($value, $base) |
||
41 | |||
42 | /** |
||
43 | * @param resource $value |
||
44 | * |
||
45 | * @return \Jose\Util\BigInteger |
||
46 | */ |
||
47 | public static function createFromGMPResource($value) |
||
53 | |||
54 | /** |
||
55 | * @param string $value |
||
56 | * |
||
57 | * @return \Jose\Util\BigInteger |
||
58 | */ |
||
59 | public static function createFromBinaryString($value) |
||
66 | |||
67 | /** |
||
68 | * @param string $value |
||
69 | * |
||
70 | * @return \Jose\Util\BigInteger |
||
71 | */ |
||
72 | public static function createFromDecimalString($value) |
||
78 | |||
79 | /** |
||
80 | * @param int $value |
||
81 | * |
||
82 | * @return \Jose\Util\BigInteger |
||
83 | */ |
||
84 | public static function createFromDecimal($value) |
||
90 | |||
91 | /** |
||
92 | * Converts a BigInteger to a binary string. |
||
93 | * |
||
94 | * @return string |
||
95 | */ |
||
96 | public function toBytes() |
||
97 | { |
||
98 | if (gmp_cmp($this->value, gmp_init(0)) === 0) { |
||
99 | return ''; |
||
100 | } |
||
101 | |||
102 | $temp = gmp_strval(gmp_abs($this->value), 16); |
||
103 | $temp = mb_strlen($temp, '8bit') & 1 ? '0'.$temp : $temp; |
||
104 | $temp = hex2bin($temp); |
||
105 | |||
106 | return ltrim($temp, chr(0)); |
||
107 | } |
||
108 | |||
109 | /** |
||
110 | * Adds two BigIntegers. |
||
111 | * |
||
112 | * @param \Jose\Util\BigInteger $y |
||
113 | * |
||
114 | * @return \Jose\Util\BigInteger |
||
115 | */ |
||
116 | public function add(BigInteger $y) |
||
122 | |||
123 | /** |
||
124 | * Subtracts two BigIntegers. |
||
125 | * |
||
126 | * @param \Jose\Util\BigInteger $y |
||
127 | * |
||
128 | * @return \Jose\Util\BigInteger |
||
129 | */ |
||
130 | public function subtract(BigInteger $y) |
||
136 | |||
137 | /** |
||
138 | * Multiplies two BigIntegers. |
||
139 | * |
||
140 | * @param \Jose\Util\BigInteger $x |
||
141 | * |
||
142 | * @return \Jose\Util\BigInteger |
||
143 | */ |
||
144 | public function multiply(BigInteger $x) |
||
150 | |||
151 | /** |
||
152 | * Divides two BigIntegers. |
||
153 | * |
||
154 | * @param BigInteger $x |
||
155 | * |
||
156 | * @return BigInteger |
||
157 | */ |
||
158 | public function divide(BigInteger $x) |
||
164 | |||
165 | /** |
||
166 | * Performs modular exponentiation. |
||
167 | * |
||
168 | * @param \Jose\Util\BigInteger $e |
||
169 | * @param \Jose\Util\BigInteger $n |
||
170 | * |
||
171 | * @return \Jose\Util\BigInteger |
||
172 | */ |
||
173 | public function modPow(BigInteger $e, BigInteger $n) |
||
179 | |||
180 | /** |
||
181 | * Performs modular exponentiation. |
||
182 | * |
||
183 | * @param \Jose\Util\BigInteger $d |
||
184 | * |
||
185 | * @return \Jose\Util\BigInteger |
||
186 | */ |
||
187 | public function mod(BigInteger $d) |
||
193 | |||
194 | /** |
||
195 | * Calculates modular inverses. |
||
196 | * |
||
197 | * @param \Jose\Util\BigInteger $n |
||
198 | * |
||
199 | * @return \Jose\Util\BigInteger |
||
200 | */ |
||
201 | public function modInverse(BigInteger $n) |
||
208 | |||
209 | /** |
||
210 | * Calculates the greatest common denominator. |
||
211 | * |
||
212 | * @param BigInteger $x |
||
213 | * |
||
214 | * @return BigInteger |
||
215 | */ |
||
216 | public function gcd(BigInteger $x) |
||
222 | |||
223 | /** |
||
224 | * Compares two numbers. |
||
225 | * |
||
226 | * @param \Jose\Util\BigInteger $y |
||
227 | * |
||
228 | * @return int < 0 if $this is less than $y; > 0 if $this is greater than $y, and 0 if they are equal. |
||
229 | */ |
||
230 | public function compare(BigInteger $y) |
||
234 | |||
235 | /** |
||
236 | * Check whether two BigIntegers are the same. |
||
237 | * |
||
238 | * @param BigInteger $x |
||
239 | * |
||
240 | * @return bool |
||
241 | */ |
||
242 | public function equals(BigInteger $x) |
||
246 | |||
247 | /** |
||
248 | * Whether this is an even number. |
||
249 | * |
||
250 | * @return bool |
||
251 | */ |
||
252 | public function isEven() |
||
259 | |||
260 | /** |
||
261 | * Generate a random integer between min and max. |
||
262 | * |
||
263 | * @param BigInteger $min |
||
264 | * @param BigInteger $max |
||
265 | * |
||
266 | * @return BigInteger |
||
267 | */ |
||
268 | public static function randomInt(BigInteger $min, BigInteger $max) |
||
274 | } |
||
275 |
This error could be the result of:
1. Missing dependencies
PHP Analyzer uses your
composer.json
file (if available) to determine the dependencies of your project and to determine all the available classes and functions. It expects thecomposer.json
to be in the root folder of your repository.Are you sure this class is defined by one of your dependencies, or did you maybe not list a dependency in either the
require
orrequire-dev
section?2. Missing use statement
PHP does not complain about undefined classes in
ìnstanceof
checks. For example, the following PHP code will work perfectly fine:If you have not tested against this specific condition, such errors might go unnoticed.