[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/ -> sect113r2.php (source)

   1  <?php
   2  
   3  /**
   4   * sect113r2
   5   *
   6   * PHP version 5 and 7
   7   *
   8   * @author    Jim Wigginton <terrafrost@php.net>
   9   * @copyright 2017 Jim Wigginton
  10   * @license   http://www.opensource.org/licenses/mit-license.html  MIT License
  11   * @link      http://pear.php.net/package/Math_BigInteger
  12   */
  13  
  14  namespace phpseclib3\Crypt\EC\Curves;
  15  
  16  use phpseclib3\Crypt\EC\BaseCurves\Binary;
  17  use phpseclib3\Math\BigInteger;
  18  
  19  class sect113r2 extends Binary
  20  {
  21      public function __construct()
  22      {
  23          $this->setModulo(113, 9, 0);
  24          $this->setCoefficients(
  25              '00689918DBEC7E5A0DD6DFC0AA55C7',
  26              '0095E9A9EC9B297BD4BF36E059184F'
  27          );
  28          $this->setBasePoint(
  29              '01A57A6A7B26CA5EF52FCDB8164797',
  30              '00B3ADC94ED1FE674C06E695BABA1D'
  31          );
  32          $this->setOrder(new BigInteger('010000000000000108789B2496AF93', 16));
  33      }
  34  }