NBitcoin.Crypto.ECKey.ECKey C# (CSharp) Method

ECKey() static private method

static private ECKey ( ) : System
return System
        static ECKey()
        {
            _Secp256k1 = CustomNamedCurves.Secp256k1;
            CURVE = new ECDomainParameters(_Secp256k1.Curve, _Secp256k1.G, _Secp256k1.N, _Secp256k1.H);
            HALF_CURVE_ORDER = _Secp256k1.N.ShiftRight(1);
            CURVE_ORDER = _Secp256k1.N;
        }

Same methods

ECKey::ECKey ( byte vch, bool isPrivate ) : System