Exemplo n.º 1
0
 public ECDsa(ECPoint publicKey)
 {
     this.publicKey = publicKey;
     this.curve     = publicKey.Curve;
 }
Exemplo n.º 2
0
 public ECDsa(byte[] privateKey, ECCurve curve)
     : this(curve.G * privateKey)
 {
     this.privateKey = privateKey;
 }