crypto/tls.ConnectionState.CipherSuite (field)

7 uses

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

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

	google.golang.org/grpc/credentials
		tls.go#L87: 		StandardName: cipherSuiteLookup(t.State.CipherSuite),

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