Subversion Repositories oidplus

Rev

Rev 846 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
827 daniel-mar 1
<?php
2
 
3
/**
4
 * sect163r2
5
 *
6
 * PHP version 5 and 7
7
 *
874 daniel-mar 8
 * @category  Crypt
9
 * @package   EC
827 daniel-mar 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
 
16
namespace phpseclib3\Crypt\EC\Curves;
17
 
18
use phpseclib3\Crypt\EC\BaseCurves\Binary;
19
use phpseclib3\Math\BigInteger;
20
 
21
class sect163r2 extends Binary
22
{
23
    public function __construct()
24
    {
25
        $this->setModulo(163, 7, 6, 3, 0);
26
        $this->setCoefficients(
27
            '000000000000000000000000000000000000000001',
28
            '020A601907B8C953CA1481EB10512F78744A3205FD'
29
        );
30
        $this->setBasePoint(
31
            '03F0EBA16286A2D57EA0991168D4994637E8343E36',
32
            '00D51FBC6C71A0094FA2CDD545B11C5C0C797324F1'
33
        );
34
        $this->setOrder(new BigInteger('040000000000000000000292FE77E70C12A4234C33', 16));
35
    }
36
}