Пример #1
0
 public SecT239K1Curve() : base(239, 158, 0, 0)
 {
     this.m_infinity = new SecT239K1Point(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("2000000000000000000000000000005A79FEC67CB6E91F1C1DA800E478A5"));
     this.m_cofactor = BigInteger.ValueOf(4L);
     this.m_coord    = 6;
 }
Пример #2
0
        public SecT239K1Curve()
            : base(239, 158, 0, 0)
        {
            this.m_infinity = new SecT239K1Point(this, null, null);

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

            this.m_coord = SecT239K1_DEFAULT_COORDS;
        }
Пример #3
0
        public SecT239K1Curve()
            : base(239, 158, 0, 0)
        {
            this.m_infinity = new SecT239K1Point(this, null, null);

            this.m_a        = FromBigInteger(BigInteger.Zero);
            this.m_b        = FromBigInteger(BigInteger.One);
            this.m_order    = new BigInteger(1, Hex.DecodeStrict("2000000000000000000000000000005A79FEC67CB6E91F1C1DA800E478A5"));
            this.m_cofactor = BigInteger.ValueOf(4);

            this.m_coord = SECT239K1_DEFAULT_COORDS;
        }