crypto/tls.ConnectionState.CipherSuite (field)

7 uses

	crypto/tls (current package)
		common.go#L229: 	CipherSuite uint16
		conn.go#L1483: 	state.CipherSuite = c.cipherSuite

	golang.org/x/net/http2
		server.go#L494: 		if !s.PermitProhibitedCipherSuites && isBadCipher(sc.tlsState.CipherSuite) {
		server.go#L505: 			sc.rejectConn(ErrCodeInadequateSecurity, fmt.Sprintf("Prohibited TLS 1.2 Cipher Suite: %x", sc.tlsState.CipherSuite))

	google.golang.org/grpc/credentials
		tls.go#L50: 		StandardName: cipherSuiteLookup[t.State.CipherSuite],

	net/http
		h2_bundle.go#L4166: 		if !s.PermitProhibitedCipherSuites && http2isBadCipher(sc.tlsState.CipherSuite) {
		h2_bundle.go#L4177: 			sc.rejectConn(http2ErrCodeInadequateSecurity, fmt.Sprintf("Prohibited TLS 1.2 Cipher Suite: %x", sc.tlsState.CipherSuite))