예제 #1
0
파일: curve.go 프로젝트: LegoShrimp/crypto
// Convert a point to string representation.
func (c *curve) pointString(x, y *nist.Int) string {
	return fmt.Sprintf("(%s,%s)", x.String(), y.String())
}