BN.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766
  1. <?php
  2. namespace BN;
  3. use \JsonSerializable;
  4. use \Exception;
  5. use \BI\BigInteger;
  6. class BN implements JsonSerializable
  7. {
  8. public $bi;
  9. public $red;
  10. function __construct($number, $base = 10, $endian = null)
  11. {
  12. if( $number instanceof BN ) {
  13. $this->bi = $number->bi;
  14. $this->red = $number->red;
  15. return;
  16. }
  17. // Reduction context
  18. $this->red = null;
  19. if ( $number instanceof BigInteger ) {
  20. $this->bi = $number;
  21. return;
  22. }
  23. if( is_array($number) )
  24. {
  25. $number = call_user_func_array("pack", array_merge(array("C*"), $number));
  26. $number = bin2hex($number);
  27. $base = 16;
  28. }
  29. if( $base == "hex" )
  30. $base = 16;
  31. if ($endian == 'le') {
  32. if ($base != 16)
  33. throw new \Exception("Not implemented");
  34. $number = bin2hex(strrev(hex2bin($number)));
  35. }
  36. $this->bi = new BigInteger($number, $base);
  37. }
  38. public function negative() {
  39. return $this->bi->sign() < 0 ? 1 : 0;
  40. }
  41. public static function isBN($num) {
  42. return ($num instanceof BN);
  43. }
  44. public static function max($left, $right) {
  45. return ( $left->cmp($right) > 0 ) ? $left : $right;
  46. }
  47. public static function min($left, $right) {
  48. return ( $left->cmp($right) < 0 ) ? $left : $right;
  49. }
  50. public function copy($dest)
  51. {
  52. $dest->bi = $this->bi;
  53. $dest->red = $this->red;
  54. }
  55. public function _clone() {
  56. return clone($this);
  57. }
  58. public function toString($base = 10, $padding = 0)
  59. {
  60. if( $base == "hex" )
  61. $base = 16;
  62. $str = $this->bi->abs()->toString($base);
  63. if ($padding > 0) {
  64. $len = strlen($str);
  65. $mod = $len % $padding;
  66. if ($mod > 0)
  67. $len = $len + $padding - $mod;
  68. $str = str_pad($str, $len, "0", STR_PAD_LEFT);
  69. }
  70. if( $this->negative() )
  71. return "-" . $str;
  72. return $str;
  73. }
  74. public function toNumber() {
  75. return $this->bi->toNumber();
  76. }
  77. #[\ReturnTypeWillChange]
  78. public function jsonSerialize() {
  79. return $this->toString(16);
  80. }
  81. public function toArray($endian = "be", $length = -1)
  82. {
  83. $hex = $this->toString(16);
  84. if( $hex[0] === "-" )
  85. $hex = substr($hex, 1);
  86. if( strlen($hex) % 2 )
  87. $hex = "0" . $hex;
  88. $bytes = array_map(
  89. function($v) { return hexdec($v); },
  90. str_split($hex, 2)
  91. );
  92. if( $length > 0 )
  93. {
  94. $count = count($bytes);
  95. if( $count > $length )
  96. throw new Exception("Byte array longer than desired length");
  97. for($i = $count; $i < $length; $i++)
  98. array_unshift($bytes, 0);
  99. }
  100. if( $endian === "le" )
  101. $bytes = array_reverse($bytes);
  102. return $bytes;
  103. }
  104. public function bitLength() {
  105. $bin = $this->toString(2);
  106. return strlen($bin) - ( $bin[0] === "-" ? 1 : 0 );
  107. }
  108. public function zeroBits() {
  109. return $this->bi->scan1(0);
  110. }
  111. public function byteLength() {
  112. return ceil($this->bitLength() / 8);
  113. }
  114. //TODO toTwos, fromTwos
  115. public function isNeg() {
  116. return $this->negative() !== 0;
  117. }
  118. // Return negative clone of `this`
  119. public function neg() {
  120. return $this->_clone()->ineg();
  121. }
  122. public function ineg() {
  123. $this->bi = $this->bi->neg();
  124. return $this;
  125. }
  126. // Or `num` with `this` in-place
  127. public function iuor(BN $num) {
  128. $this->bi = $this->bi->binaryOr($num->bi);
  129. return $this;
  130. }
  131. public function ior(BN $num) {
  132. if (assert_options(ASSERT_ACTIVE)) assert(!$this->negative() && !$num->negative());
  133. return $this->iuor($num);
  134. }
  135. // Or `num` with `this`
  136. public function _or(BN $num) {
  137. if( $this->ucmp($num) > 0 )
  138. return $this->_clone()->ior($num);
  139. return $num->_clone()->ior($this);
  140. }
  141. public function uor(BN $num) {
  142. if( $this->ucmp($num) > 0 )
  143. return $this->_clone()->iuor($num);
  144. return $num->_clone()->ior($this);
  145. }
  146. // And `num` with `this` in-place
  147. public function iuand(BN $num) {
  148. $this->bi = $this->bi->binaryAnd($num->bi);
  149. return $this;
  150. }
  151. public function iand(BN $num) {
  152. if (assert_options(ASSERT_ACTIVE)) assert(!$this->negative() && !$num->negative());
  153. return $this->iuand($num);
  154. }
  155. // And `num` with `this`
  156. public function _and(BN $num) {
  157. if( $this->ucmp($num) > 0 )
  158. return $this->_clone()->iand($num);
  159. return $num->_clone()->iand($this);
  160. }
  161. public function uand(BN $num) {
  162. if( $this->ucmp($num) > 0 )
  163. return $this->_clone()->iuand($num);
  164. return $num->_clone()->iuand($this);
  165. }
  166. // Xor `num` with `this` in-place
  167. public function iuxor(BN $num) {
  168. $this->bi = $this->bi->binaryXor($num->bi);
  169. return $this;
  170. }
  171. public function ixor(BN $num) {
  172. if (assert_options(ASSERT_ACTIVE)) assert(!$this->negative() && !$num->negative());
  173. return $this->iuxor($num);
  174. }
  175. // Xor `num` with `this`
  176. public function _xor(BN $num) {
  177. if( $this->ucmp($num) > 0 )
  178. return $this->_clone()->ixor($num);
  179. return $num->_clone()->ixor($this);
  180. }
  181. public function uxor(BN $num) {
  182. if( $this->ucmp($num) > 0 )
  183. return $this->_clone()->iuxor($num);
  184. return $num->_clone()->iuxor($this);
  185. }
  186. // Not ``this`` with ``width`` bitwidth
  187. public function inotn($width)
  188. {
  189. assert(is_integer($width) && $width >= 0);
  190. $neg = false;
  191. if( $this->isNeg() )
  192. {
  193. $this->negi();
  194. $neg = true;
  195. }
  196. for($i = 0; $i < $width; $i++)
  197. $this->bi = $this->bi->setbit($i, !$this->bi->testbit($i));
  198. return $neg ? $this->negi() : $this;
  199. }
  200. public function notn($width) {
  201. return $this->_clone()->inotn($width);
  202. }
  203. // Set `bit` of `this`
  204. public function setn($bit, $val) {
  205. assert(is_integer($bit) && $bit > 0);
  206. $this->bi = $this->bi->setbit($bit, !!$val);
  207. return $this;
  208. }
  209. // Add `num` to `this` in-place
  210. public function iadd(BN $num) {
  211. $this->bi = $this->bi->add($num->bi);
  212. return $this;
  213. }
  214. // Add `num` to `this`
  215. public function add(BN $num) {
  216. return $this->_clone()->iadd($num);
  217. }
  218. // Subtract `num` from `this` in-place
  219. public function isub(BN $num) {
  220. $this->bi = $this->bi->sub($num->bi);
  221. return $this;
  222. }
  223. // Subtract `num` from `this`
  224. public function sub(BN $num) {
  225. return $this->_clone()->isub($num);
  226. }
  227. // Multiply `this` by `num`
  228. public function mul(BN $num) {
  229. return $this->_clone()->imul($num);
  230. }
  231. // In-place Multiplication
  232. public function imul(BN $num) {
  233. $this->bi = $this->bi->mul($num->bi);
  234. return $this;
  235. }
  236. public function imuln($num)
  237. {
  238. assert(is_numeric($num));
  239. $int = intval($num);
  240. $res = $this->bi->mul($int);
  241. if( ($num - $int) > 0 )
  242. {
  243. $mul = 10;
  244. $frac = ($num - $int) * $mul;
  245. $int = intval($frac);
  246. while( ($frac - $int) > 0 )
  247. {
  248. $mul *= 10;
  249. $frac *= 10;
  250. $int = intval($frac);
  251. }
  252. $tmp = $this->bi->mul($int);
  253. $tmp = $tmp->div($mul);
  254. $res = $res->add($tmp);
  255. }
  256. $this->bi = $res;
  257. return $this;
  258. }
  259. public function muln($num) {
  260. return $this->_clone()->imuln($num);
  261. }
  262. // `this` * `this`
  263. public function sqr() {
  264. return $this->mul($this);
  265. }
  266. // `this` * `this` in-place
  267. public function isqr() {
  268. return $this->imul($this);
  269. }
  270. // Math.pow(`this`, `num`)
  271. public function pow(BN $num) {
  272. $res = clone($this);
  273. $res->bi = $res->bi->pow($num->bi);
  274. return $res;
  275. }
  276. // Shift-left in-place
  277. public function iushln($bits) {
  278. assert(is_integer($bits) && $bits >= 0);
  279. if ($bits < 54) {
  280. $this->bi = $this->bi->mul(1 << $bits);
  281. } else {
  282. $this->bi = $this->bi->mul((new BigInteger(2))->pow($bits));
  283. }
  284. return $this;
  285. }
  286. public function ishln($bits) {
  287. if (assert_options(ASSERT_ACTIVE)) assert(!$this->negative());
  288. return $this->iushln($bits);
  289. }
  290. // Shift-right in-place
  291. // NOTE: `hint` is a lowest bit before trailing zeroes
  292. // NOTE: if `extended` is present - it will be filled with destroyed bits
  293. public function iushrn($bits, $hint = 0, &$extended = null) {
  294. if( $hint != 0 )
  295. throw new Exception("Not implemented");
  296. assert(is_integer($bits) && $bits >= 0);
  297. if( $extended != null )
  298. $extended = $this->maskn($bits);
  299. if ($bits < 54) {
  300. $this->bi = $this->bi->div(1 << $bits);
  301. } else {
  302. $this->bi = $this->bi->div((new BigInteger(2))->pow($bits));
  303. }
  304. return $this;
  305. }
  306. public function ishrn($bits, $hint = null, $extended = null) {
  307. if (assert_options(ASSERT_ACTIVE)) assert(!$this->negative());
  308. return $this->iushrn($bits, $hint, $extended);
  309. }
  310. // Shift-left
  311. public function shln($bits) {
  312. return $this->_clone()->ishln($bits);
  313. }
  314. public function ushln($bits) {
  315. return $this->_clone()->iushln($bits);
  316. }
  317. // Shift-right
  318. public function shrn($bits) {
  319. return $this->_clone()->ishrn($bits);
  320. }
  321. public function ushrn($bits) {
  322. return $this->_clone()->iushrn($bits);
  323. }
  324. // Test if n bit is set
  325. public function testn($bit) {
  326. assert(is_integer($bit) && $bit >= 0);
  327. return $this->bi->testbit($bit);
  328. }
  329. // Return only lowers bits of number (in-place)
  330. public function imaskn($bits) {
  331. assert(is_integer($bits) && $bits >= 0);
  332. if (assert_options(ASSERT_ACTIVE)) assert(!$this->negative());
  333. $mask = "";
  334. for($i = 0; $i < $bits; $i++)
  335. $mask .= "1";
  336. return $this->iand(new BN($mask, 2));
  337. }
  338. // Return only lowers bits of number
  339. public function maskn($bits) {
  340. return $this->_clone()->imaskn($bits);
  341. }
  342. // Add plain number `num` to `this`
  343. public function iaddn($num) {
  344. assert(is_numeric($num));
  345. $this->bi = $this->bi->add(intval($num));
  346. return $this;
  347. }
  348. // Subtract plain number `num` from `this`
  349. public function isubn($num) {
  350. assert(is_numeric($num));
  351. $this->bi = $this->bi->sub(intval($num));
  352. return $this;
  353. }
  354. public function addn($num) {
  355. return $this->_clone()->iaddn($num);
  356. }
  357. public function subn($num) {
  358. return $this->_clone()->isubn($num);
  359. }
  360. public function iabs() {
  361. if ($this->bi->sign() < 0) {
  362. $this->bi = $this->bi->abs();
  363. }
  364. return $this;
  365. }
  366. public function abs() {
  367. $res = clone($this);
  368. if ($res->bi->sign() < 0)
  369. $res->bi = $res->bi->abs();
  370. return $res;
  371. }
  372. // Find `this` / `num`
  373. public function div(BN $num) {
  374. if (assert_options(ASSERT_ACTIVE)) assert(!$num->isZero());
  375. $res = clone($this);
  376. $res->bi = $res->bi->div($num->bi);
  377. return $res;
  378. }
  379. // Find `this` % `num`
  380. public function mod(BN $num) {
  381. if (assert_options(ASSERT_ACTIVE)) assert(!$num->isZero());
  382. $res = clone($this);
  383. $res->bi = $res->bi->divR($num->bi);
  384. return $res;
  385. }
  386. public function umod(BN $num) {
  387. if (assert_options(ASSERT_ACTIVE)) assert(!$num->isZero());
  388. $tmp = $num->bi->sign() < 0 ? $num->bi->abs() : $num->bi;
  389. $res = clone($this);
  390. $res->bi = $this->bi->mod($tmp);
  391. return $res;
  392. }
  393. // Find Round(`this` / `num`)
  394. public function divRound(BN $num)
  395. {
  396. if (assert_options(ASSERT_ACTIVE)) assert(!$num->isZero());
  397. $negative = $this->negative() !== $num->negative();
  398. $res = $this->_clone()->abs();
  399. $arr = $res->bi->divQR($num->bi->abs());
  400. $res->bi = $arr[0];
  401. $tmp = $num->bi->sub($arr[1]->mul(2));
  402. if( $tmp->cmp(0) <= 0 && (!$negative || $this->negative() === 0) )
  403. $res->iaddn(1);
  404. return $negative ? $res->negi() : $res;
  405. }
  406. public function modn($num) {
  407. assert(is_numeric($num) && $num != 0);
  408. return $this->bi->divR(intval($num))->toNumber();
  409. }
  410. // In-place division by number
  411. public function idivn($num) {
  412. assert(is_numeric($num) && $num != 0);
  413. $this->bi = $this->bi->div(intval($num));
  414. return $this;
  415. }
  416. public function divn($num) {
  417. return $this->_clone()->idivn($num);
  418. }
  419. public function gcd(BN $num) {
  420. $res = clone($this);
  421. $res->bi = $this->bi->gcd($num->bi);
  422. return $res;
  423. }
  424. public function invm(BN $num) {
  425. $res = clone($this);
  426. $res->bi = $res->bi->modInverse($num->bi);
  427. return $res;
  428. }
  429. public function isEven() {
  430. return !$this->bi->testbit(0);
  431. }
  432. public function isOdd() {
  433. return $this->bi->testbit(0);
  434. }
  435. public function andln($num) {
  436. assert(is_numeric($num));
  437. return $this->bi->binaryAnd($num)->toNumber();
  438. }
  439. public function bincn($num) {
  440. $tmp = (new BN(1))->iushln($num);
  441. return $this->add($tmp);
  442. }
  443. public function isZero() {
  444. return $this->bi->sign() == 0;
  445. }
  446. public function cmpn($num) {
  447. assert(is_numeric($num));
  448. return $this->bi->cmp($num);
  449. }
  450. // Compare two numbers and return:
  451. // 1 - if `this` > `num`
  452. // 0 - if `this` == `num`
  453. // -1 - if `this` < `num`
  454. public function cmp(BN $num) {
  455. return $this->bi->cmp($num->bi);
  456. }
  457. public function ucmp(BN $num) {
  458. return $this->bi->abs()->cmp($num->bi->abs());
  459. }
  460. public function gtn($num) {
  461. return $this->cmpn($num) > 0;
  462. }
  463. public function gt(BN $num) {
  464. return $this->cmp($num) > 0;
  465. }
  466. public function gten($num) {
  467. return $this->cmpn($num) >= 0;
  468. }
  469. public function gte(BN $num) {
  470. return $this->cmp($num) >= 0;
  471. }
  472. public function ltn($num) {
  473. return $this->cmpn($num) < 0;
  474. }
  475. public function lt(BN $num) {
  476. return $this->cmp($num) < 0;
  477. }
  478. public function lten($num) {
  479. return $this->cmpn($num) <= 0;
  480. }
  481. public function lte(BN $num) {
  482. return $this->cmp($num) <= 0;
  483. }
  484. public function eqn($num) {
  485. return $this->cmpn($num) === 0;
  486. }
  487. public function eq(BN $num) {
  488. return $this->cmp($num) === 0;
  489. }
  490. public function toRed(Red &$ctx) {
  491. if( $this->red !== null )
  492. throw new Exception("Already a number in reduction context");
  493. if( $this->negative() !== 0 )
  494. throw new Exception("red works only with positives");
  495. return $ctx->convertTo($this)->_forceRed($ctx);
  496. }
  497. public function fromRed() {
  498. if( $this->red === null )
  499. throw new Exception("fromRed works only with numbers in reduction context");
  500. return $this->red->convertFrom($this);
  501. }
  502. public function _forceRed(Red &$ctx) {
  503. $this->red = $ctx;
  504. return $this;
  505. }
  506. public function forceRed(Red &$ctx) {
  507. if( $this->red !== null )
  508. throw new Exception("Already a number in reduction context");
  509. return $this->_forceRed($ctx);
  510. }
  511. public function redAdd(BN $num) {
  512. if( $this->red === null )
  513. throw new Exception("redAdd works only with red numbers");
  514. $res = clone($this);
  515. $res->bi = $res->bi->add($num->bi);
  516. if ($res->bi->cmp($this->red->m->bi) >= 0)
  517. $res->bi = $res->bi->sub($this->red->m->bi);
  518. return $res;
  519. // return $this->red->add($this, $num);
  520. }
  521. public function redIAdd(BN $num) {
  522. if( $this->red === null )
  523. throw new Exception("redIAdd works only with red numbers");
  524. $res = $this;
  525. $res->bi = $res->bi->add($num->bi);
  526. if ($res->bi->cmp($this->red->m->bi) >= 0)
  527. $res->bi = $res->bi->sub($this->red->m->bi);
  528. return $res;
  529. //return $this->red->iadd($this, $num);
  530. }
  531. public function redSub(BN $num) {
  532. if( $this->red === null )
  533. throw new Exception("redSub works only with red numbers");
  534. $res = clone($this);
  535. $res->bi = $this->bi->sub($num->bi);
  536. if ($res->bi->sign() < 0)
  537. $res->bi = $res->bi->add($this->red->m->bi);
  538. return $res;
  539. //return $this->red->sub($this, $num);
  540. }
  541. public function redISub(BN $num) {
  542. if( $this->red === null )
  543. throw new Exception("redISub works only with red numbers");
  544. $this->bi = $this->bi->sub($num->bi);
  545. if ($this->bi->sign() < 0)
  546. $this->bi = $this->bi->add($this->red->m->bi);
  547. return $this;
  548. // return $this->red->isub($this, $num);
  549. }
  550. public function redShl(BN $num) {
  551. if( $this->red === null )
  552. throw new Exception("redShl works only with red numbers");
  553. return $this->red->shl($this, $num);
  554. }
  555. public function redMul(BN $num) {
  556. if( $this->red === null )
  557. throw new Exception("redMul works only with red numbers");
  558. $res = clone($this);
  559. $res->bi = $this->bi->mul($num->bi)->mod($this->red->m->bi);
  560. return $res;
  561. /*
  562. return $this->red->mul($this, $num);
  563. */
  564. }
  565. public function redIMul(BN $num) {
  566. if( $this->red === null )
  567. throw new Exception("redIMul works only with red numbers");
  568. $this->bi = $this->bi->mul($num->bi)->mod($this->red->m->bi);
  569. return $this;
  570. //return $this->red->imul($this, $num);
  571. }
  572. public function redSqr() {
  573. if( $this->red === null )
  574. throw new Exception("redSqr works only with red numbers");
  575. $res = clone($this);
  576. $res->bi = $this->bi->mul($this->bi)->mod($this->red->m->bi);
  577. return $res;
  578. /*
  579. $this->red->verify1($this);
  580. return $this->red->sqr($this);
  581. */
  582. }
  583. public function redISqr() {
  584. if( $this->red === null )
  585. throw new Exception("redISqr works only with red numbers");
  586. $res = $this;
  587. $res->bi = $this->bi->mul($this->bi)->mod($this->red->m->bi);
  588. return $res;
  589. /* $this->red->verify1($this);
  590. return $this->red->isqr($this);
  591. */
  592. }
  593. public function redSqrt() {
  594. if( $this->red === null )
  595. throw new Exception("redSqrt works only with red numbers");
  596. $this->red->verify1($this);
  597. return $this->red->sqrt($this);
  598. }
  599. public function redInvm() {
  600. if( $this->red === null )
  601. throw new Exception("redInvm works only with red numbers");
  602. $this->red->verify1($this);
  603. return $this->red->invm($this);
  604. }
  605. public function redNeg() {
  606. if( $this->red === null )
  607. throw new Exception("redNeg works only with red numbers");
  608. $this->red->verify1($this);
  609. return $this->red->neg($this);
  610. }
  611. public function redPow(BN $num) {
  612. $this->red->verify2($this, $num);
  613. return $this->red->pow($this, $num);
  614. }
  615. public static function red($num) {
  616. return new Red($num);
  617. }
  618. public static function mont($num) {
  619. return new Red($num);
  620. }
  621. public function inspect() {
  622. return ($this->red == null ? "<BN: " : "<BN-R: ") . $this->toString(16) . ">";
  623. }
  624. public function __debugInfo() {
  625. if ($this->red != null) {
  626. return ["BN-R" => $this->toString(16)];
  627. } else {
  628. return ["BN" => $this->toString(16)];
  629. }
  630. }
  631. }