func crypto/elliptic.Marshal
7 uses
crypto/elliptic (current package)
elliptic.go#L363: func Marshal(curve Curve, x, y *big.Int) []byte {
p224.go#L70: p, err := nistec.NewP224Point().SetBytes(Marshal(P224(), x, y))
p384.go#L75: p, err := nistec.NewP384Point().SetBytes(Marshal(P384(), x, y))
p521.go#L80: p, err := nistec.NewP521Point().SetBytes(Marshal(P521(), x, y))
crypto/tls
key_schedule.go#L164: return elliptic.Marshal(curve, p.x, p.y)
crypto/x509
sec1.go#L60: PublicKey: asn1.BitString{Bytes: elliptic.Marshal(key.Curve, key.X, key.Y)},
x509.go#L87: publicKeyBytes = elliptic.Marshal(pub.Curve, pub.X, pub.Y)