crypto/tls.Config.CipherSuites (field)

12 uses

	crypto/tls (current package)
		common.go#L684: 	CipherSuites []uint16
		common.go#L896: 		CipherSuites:                        c.CipherSuites,
		common.go#L1059: 	if c.CipherSuites == nil {
		common.go#L1066: 		cipherSuites := slices.Clone(c.CipherSuites)
		common.go#L1071: 	return c.CipherSuites
		handshake_client.go#L629: 	if hs.c.config.CipherSuites == nil && !needFIPS() && rsaKexCiphers[hs.suite.id] {
		handshake_client.go#L633: 	if hs.c.config.CipherSuites == nil && !needFIPS() && tdesCiphers[hs.suite.id] {
		handshake_server.go#L375: 	if c.config.CipherSuites == nil && !needFIPS() && rsaKexCiphers[hs.suite.id] {
		handshake_server.go#L379: 	if c.config.CipherSuites == nil && !needFIPS() && tdesCiphers[hs.suite.id] {

	net/http
		h2_bundle.go#L4131: 	} else if s.TLSConfig.CipherSuites != nil && s.TLSConfig.MinVersion < tls.VersionTLS13 {
		h2_bundle.go#L4136: 		for _, cs := range s.TLSConfig.CipherSuites {