Пример #1
0
 public SecP224K1Curve() : base(q)
 {
     this.m_infinity = new SecP224K1Point(this, null, null);
     base.m_a        = this.FromBigInteger(BigInteger.Zero);
     base.m_b        = this.FromBigInteger(BigInteger.ValueOf(5L));
     base.m_order    = new BigInteger(1, Hex.Decode("010000000000000000000000000001DCE8D2EC6184CAF0A971769FB1F7"));
     base.m_cofactor = BigInteger.One;
     base.m_coord    = 2;
 }
Пример #2
0
        public SecP224K1Curve()
            : base(q)
        {
            this.m_infinity = new SecP224K1Point(this, null, null);

            this.m_a        = FromBigInteger(BigInteger.Zero);
            this.m_b        = FromBigInteger(BigInteger.ValueOf(5));
            this.m_order    = new BigInteger(1, Hex.Decode("010000000000000000000000000001DCE8D2EC6184CAF0A971769FB1F7"));
            this.m_cofactor = BigInteger.One;
            this.m_coord    = SECP224K1_DEFAULT_COORDS;
        }
Пример #3
0
        public SecP224K1Curve()
            : base(q)
        {
            this.m_infinity = new SecP224K1Point(this, null, null);

            this.m_a = FromBigInteger(BigInteger.Zero);
            this.m_b = FromBigInteger(BigInteger.ValueOf(5));
            this.m_order = new BigInteger(1, Hex.Decode("010000000000000000000000000001DCE8D2EC6184CAF0A971769FB1F7"));
            this.m_cofactor = BigInteger.One;
            this.m_coord = SECP224K1_DEFAULT_COORDS;
        }