func crypto/elliptic.Unmarshal

6 uses

	crypto/elliptic (current package)
		elliptic.go#L389: func Unmarshal(curve Curve, data []byte) (x, y *big.Int) {
		p224.go#L84: 	x, y = Unmarshal(P224(), out)
		p384.go#L89: 	x, y = Unmarshal(P384(), out)
		p521.go#L94: 	x, y = Unmarshal(P521(), out)

	crypto/tls
		key_schedule.go#L170: 	x, y := elliptic.Unmarshal(curve, peerPublicKey)

	crypto/x509
		parser.go#L282: 		x, y := elliptic.Unmarshal(namedCurve, der)