コード例 #1
0
 public static ECPoint Parse(string value, ECCurve curve)
 {
     return(DecodePoint(value.HexToBytes(), curve));
 }
コード例 #2
0
 public bool IsOnCurve(ECCurve curve)
 {
     return(this.curve.Equals(curve));
 }