1<?php
2
3/**
4 * sect113r2
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 sect113r2 extends Binary
22{
23    public function __construct()
24    {
25        $this->setModulo(113, 9, 0);
26        $this->setCoefficients(
27            '00689918DBEC7E5A0DD6DFC0AA55C7',
28            '0095E9A9EC9B297BD4BF36E059184F'
29        );
30        $this->setBasePoint(
31            '01A57A6A7B26CA5EF52FCDB8164797',
32            '00B3ADC94ED1FE674C06E695BABA1D'
33        );
34        $this->setOrder(new BigInteger('010000000000000108789B2496AF93', 16));
35    }
36}
37