type crypto/tls.CurveID

37 uses

	crypto/tls (current package)
		common.go#L145: type CurveID uint16
		common.go#L148: 	CurveP256      CurveID = 23
		common.go#L149: 	CurveP384      CurveID = 24
		common.go#L150: 	CurveP521      CurveID = 25
		common.go#L151: 	X25519         CurveID = 29
		common.go#L152: 	X25519MLKEM768 CurveID = 4588
		common.go#L155: func isTLS13OnlyKeyExchange(curve CurveID) bool {
		common.go#L159: func isPQKeyExchange(curve CurveID) bool {
		common.go#L165: 	group CurveID
		common.go#L253: 	CurveID CurveID
		common.go#L437: 	SupportedCurves []CurveID
		common.go#L785: 	CurvePreferences []CurveID
		common.go#L1219: func (c *Config) curvePreferences(version uint16) []CurveID {
		common.go#L1222: 		curvePreferences = slices.DeleteFunc(curvePreferences, func(x CurveID) bool {
		common.go#L1227: 		curvePreferences = slices.DeleteFunc(curvePreferences, func(x CurveID) bool {
		common.go#L1237: func (c *Config) supportsCurve(version uint16, curve CurveID) bool {
		common.go#L1411: 			var curve CurveID
		common_string.go#L87: func (i CurveID) String() string {
		conn.go#L53: 	curveID          CurveID
		defaults.go#L20: func defaultCurvePreferences() []CurveID {
		defaults.go#L22: 		return []CurveID{X25519, CurveP256, CurveP384, CurveP521}
		defaults.go#L24: 	return []CurveID{X25519MLKEM768, X25519, CurveP256, CurveP384, CurveP521}
		defaults_fips140.go#L33: 	allowedCurvePreferencesFIPS = []CurveID{
		handshake_messages.go#L80: 	supportedCurves                  []CurveID
		handshake_messages.go#L523: 				m.supportedCurves = append(m.supportedCurves, CurveID(curve))
		handshake_messages.go#L743: 	selectedGroup CurveID
		handshake_server.go#L365: func supportsECDHE(c *Config, version uint16, supportedCurves []CurveID, supportedPoints []uint8) (bool, error) {
		handshake_server_tls13.go#L210: 	preferredGroups = slices.DeleteFunc(preferredGroups, func(group CurveID) bool {
		handshake_server_tls13.go#L217: 	hasKeyShare := func(group CurveID) bool {
		handshake_server_tls13.go#L547: func (hs *serverHandshakeStateTLS13) doHelloRetryRequest(selectedGroup CurveID) (*keyShare, error) {
		key_agreement.go#L171: 	curveID            CurveID
		key_agreement.go#L290: 	ka.curveID = CurveID(skx.key[1])<<8 | CurveID(skx.key[2])
		key_schedule.go#L53: 	curveID CurveID
		key_schedule.go#L62: func generateECDHEKey(rand io.Reader, curveID CurveID) (*ecdh.PrivateKey, error) {
		key_schedule.go#L71: func curveForCurveID(id CurveID) (ecdh.Curve, bool) {
		ticket.go#L102: 	curveID CurveID