public ECDsa(ECPoint publicKey) { this._publicKey = publicKey; this._curve = publicKey.Curve; }
public ECDsa(byte[] privateKey, ECCurve curve) : this(curve.G * privateKey) { this._privateKey = privateKey; }