Subversion Repositories oidplus

Rev

Rev 874 | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. /**
  4.  * secp112r1
  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 secp112r1 extends Prime
  20. {
  21.     public function __construct()
  22.     {
  23.         $this->setModulo(new BigInteger('DB7C2ABF62E35E668076BEAD208B', 16));
  24.         $this->setCoefficients(
  25.             new BigInteger('DB7C2ABF62E35E668076BEAD2088', 16),
  26.             new BigInteger('659EF8BA043916EEDE8911702B22', 16)
  27.         );
  28.         $this->setBasePoint(
  29.             new BigInteger('09487239995A5EE76B55F9C2F098', 16),
  30.             new BigInteger('A89CE5AF8724C0A23E0E0FF77500', 16)
  31.         );
  32.         $this->setOrder(new BigInteger('DB7C2ABF62E35E7628DFAC6561C5', 16));
  33.     }
  34. }
  35.