Example #1
0
 public SecT131R2Curve() : base(0x83, 2, 3, 8)
 {
     this.m_infinity = new SecT131R2Point(this, null, null);
     base.m_a        = this.FromBigInteger(new BigInteger(1, Hex.Decode("03E5A88919D7CAFCBF415F07C2176573B2")));
     base.m_b        = this.FromBigInteger(new BigInteger(1, Hex.Decode("04B8266A46C55657AC734CE38F018F2192")));
     base.m_order    = new BigInteger(1, Hex.Decode("0400000000000000016954A233049BA98F"));
     base.m_cofactor = BigInteger.Two;
     base.m_coord    = 6;
 }
        public SecT131R2Curve()
            : base(131, 2, 3, 8)
        {
            this.m_infinity = new SecT131R2Point(this, null, null);

            this.m_a = FromBigInteger(new BigInteger(1, Hex.Decode("03E5A88919D7CAFCBF415F07C2176573B2")));
            this.m_b = FromBigInteger(new BigInteger(1, Hex.Decode("04B8266A46C55657AC734CE38F018F2192")));
            this.m_order = new BigInteger(1, Hex.Decode("0400000000000000016954A233049BA98F"));
            this.m_cofactor = BigInteger.Two;

            this.m_coord = SecT131R2_DEFAULT_COORDS;
        }
Example #3
0
        public SecT131R2Curve()
            : base(131, 2, 3, 8)
        {
            this.m_infinity = new SecT131R2Point(this, null, null);

            this.m_a        = FromBigInteger(new BigInteger(1, Hex.DecodeStrict("03E5A88919D7CAFCBF415F07C2176573B2")));
            this.m_b        = FromBigInteger(new BigInteger(1, Hex.DecodeStrict("04B8266A46C55657AC734CE38F018F2192")));
            this.m_order    = new BigInteger(1, Hex.DecodeStrict("0400000000000000016954A233049BA98F"));
            this.m_cofactor = BigInteger.Two;

            this.m_coord = SECT131R2_DEFAULT_COORDS;
        }