[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

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

   1  <?php
   2  
   3  /**
   4   * brainpoolP160r1
   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\Prime;
  17  use phpseclib3\Math\BigInteger;
  18  
  19  class brainpoolP160r1 extends Prime
  20  {
  21      public function __construct()
  22      {
  23          $this->setModulo(new BigInteger('E95E4A5F737059DC60DFC7AD95B3D8139515620F', 16));
  24          $this->setCoefficients(
  25              new BigInteger('340E7BE2A280EB74E2BE61BADA745D97E8F7C300', 16),
  26              new BigInteger('1E589A8595423412134FAA2DBDEC95C8D8675E58', 16)
  27          );
  28          $this->setBasePoint(
  29              new BigInteger('BED5AF16EA3F6A4F62938C4631EB5AF7BDBCDBC3', 16),
  30              new BigInteger('1667CB477A1A8EC338F94741669C976316DA6321', 16)
  31          );
  32          $this->setOrder(new BigInteger('E95E4A5F737059DC60DF5991D45029409E60FC09', 16));
  33      }
  34  }