type crypto/ecdh.Curve

15 uses

	crypto/ecdh (current package)
		ecdh.go#L18: type Curve interface {
		ecdh.go#L61: 	curve     Curve
		ecdh.go#L91: func (k *PublicKey) Curve() Curve {
		ecdh.go#L101: 	curve      Curve
		ecdh.go#L150: func (k *PrivateKey) Curve() Curve {
		nist.go#L162: func P256() Curve { return p256 }
		nist.go#L185: func P384() Curve { return p384 }
		nist.go#L208: func P521() Curve { return p521 }
		x25519.go#L27: func X25519() Curve { return x25519 }

	crypto/ecdsa
		ecdsa.go#L101: func curveToECDH(c elliptic.Curve) ecdh.Curve {

	crypto/internal/hpke
		hpke.go#L50: 	dh  ecdh.Curve
		hpke.go#L62: 	curve   ecdh.Curve

	crypto/tls
		key_schedule.go#L71: func curveForCurveID(id CurveID) (ecdh.Curve, bool) {
		key_schedule.go#L86: func curveIDForCurve(curve ecdh.Curve) (CurveID, bool) {

	crypto/x509
		x509.go#L566: func oidFromECDHCurve(curve ecdh.Curve) (asn1.ObjectIdentifier, bool) {