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