github.com/refraction-networking/utls.PubClientHelloMsg.CipherSuites (field)

11 uses

	github.com/refraction-networking/utls (current package)
		u_conn.go#L601: 		2 + len(hello.CipherSuites)*2 +
		u_conn.go#L646: 	binary.Write(bufferedWriter, binary.BigEndian, uint16(len(hello.CipherSuites)<<1))
		u_conn.go#L647: 	for _, suite := range hello.CipherSuites {
		u_parrots.go#L2820: 	hello.CipherSuites = make([]uint16, len(p.CipherSuites))
		u_parrots.go#L2821: 	copy(hello.CipherSuites, p.CipherSuites)
		u_parrots.go#L2822: 	for i := range hello.CipherSuites {
		u_parrots.go#L2823: 		if isGREASEUint16(hello.CipherSuites[i]) { // just in case the user set a GREASE value instead of unGREASEd
		u_parrots.go#L2824: 			hello.CipherSuites[i] = GetBoringGREASEValue(uconn.greaseSeed, ssl_grease_cipher)
		u_public.go#L360: 	CipherSuites                 []uint16
		u_public.go#L400: 			cipherSuites:                     chm.CipherSuites,
		u_public.go#L450: 			CipherSuites:                 chm.cipherSuites,