Ejemplo n.º 1
0
 public SecT409K1Curve() : base(409, 87, 0, 0)
 {
     this.m_infinity = new SecT409K1Point(this, null, null);
     this.m_a        = this.FromBigInteger(BigInteger.Zero);
     this.m_b        = this.FromBigInteger(BigInteger.One);
     this.m_order    = new BigInteger(1, Hex.Decode("7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE5F83B2D4EA20400EC4557D5ED3E3E7CA5B4B5C83B8E01E5FCF"));
     this.m_cofactor = BigInteger.ValueOf(4L);
     this.m_coord    = 6;
 }
        public SecT409K1Curve()
            : base(409, 87, 0, 0)
        {
            this.m_infinity = new SecT409K1Point(this, null, null);

            this.m_a = FromBigInteger(BigInteger.Zero);
            this.m_b = FromBigInteger(BigInteger.One);
            this.m_order = new BigInteger(1, Hex.Decode("7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE5F83B2D4EA20400EC4557D5ED3E3E7CA5B4B5C83B8E01E5FCF"));
            this.m_cofactor = BigInteger.ValueOf(4);

            this.m_coord = SecT409K1_DEFAULT_COORDS;
        }