func crypto/elliptic.Unmarshal

9 uses

	crypto/elliptic (current package)
		elliptic.go#L340: func Unmarshal(curve Curve, data []byte) (x, y *big.Int) {

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

	crypto/x509
		x509.go#L992: 		x, y := elliptic.Unmarshal(namedCurve, asn1Data)

	golang.org/x/crypto/openpgp/packet
		public_key.go#L94: 	x, y := elliptic.Unmarshal(c, f.p.bytes)

	golang.org/x/crypto/ssh
		kex.go#L277: 	x, y = elliptic.Unmarshal(curve, pubkey)
		keys.go#L644: 	key.X, key.Y = elliptic.Unmarshal(key.Curve, w.KeyBytes)
		keys.go#L747: 	key.X, key.Y = elliptic.Unmarshal(key.Curve, w.KeyBytes)
		keys.go#L1418: 		X, Y := elliptic.Unmarshal(curve, key.Pub)

	golang.org/x/crypto/ssh/agent
		server.go#L319: 	priv.X, priv.Y = elliptic.Unmarshal(priv.Curve, keyBytes)