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