public SecT571K1Curve() : base(571, 2, 5, 10)
 {
     this.m_infinity = new SecT571K1Point(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("020000000000000000000000000000000000000000000000000000000000000000000000131850E1F19A63E4B391A8DB917F4138B630D84BE5D639381E91DEB45CFE778F637C1001"));
     this.m_cofactor = BigInteger.ValueOf(4L);
     this.m_coord    = 6;
 }
        public SecT571K1Curve()
            : base(571, 2, 5, 10)
        {
            this.m_infinity = new SecT571K1Point(this, null, null);

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

            this.m_coord = SecT571K1_DEFAULT_COORDS;
        }