[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

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

   1  <?php
   2  
   3  /**
   4   * sect113r1
   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 sect113r1 extends Binary
  20  {
  21      public function __construct()
  22      {
  23          $this->setModulo(113, 9, 0);
  24          $this->setCoefficients(
  25              '003088250CA6E7C7FE649CE85820F7',
  26              '00E8BEE4D3E2260744188BE0E9C723'
  27          );
  28          $this->setBasePoint(
  29              '009D73616F35F4AB1407D73562C10F',
  30              '00A52830277958EE84D1315ED31886'
  31          );
  32          $this->setOrder(new BigInteger('0100000000000000D9CCEC8A39E56F', 16));
  33      }
  34  }