コード例 #1
0
 public ECDsa(ECPoint publicKey)
 {
     this._publicKey = publicKey;
     this._curve     = publicKey.Curve;
 }
コード例 #2
0
 public ECDsa(byte[] privateKey, ECCurve curve)
     : this(curve.G * privateKey)
 {
     this._privateKey = privateKey;
 }