示例#1
0
 public static ECPoint Parse(string value, ECCurve curve)
 {
     return(DecodePoint(value.FromHexString(), curve));
 }
示例#2
0
文件: ECPoint.cs 项目: camchain/cam
 public static ECPoint Parse(string value, ECCurve curve)
 {
     return(DecodePoint(value.HexToBytes(), curve));
 }