crypto/tls.Config.ClientAuth (field)

15 uses

	crypto/tls (current package)
		common.go#L660: 	ClientAuth ClientAuthType
		common.go#L893: 		ClientAuth:                          c.ClientAuth,
		handshake_server.go#L482: 	needClientCerts := requiresClientCert(c.config.ClientAuth)
		handshake_server.go#L486: 	if sessionHasClientCerts && c.config.ClientAuth == NoClientCert {
		handshake_server.go#L492: 	if sessionHasClientCerts && c.config.ClientAuth >= VerifyClientCertIfGiven &&
		handshake_server.go#L562: 	if c.config.ClientAuth == NoClientCert {
		handshake_server.go#L604: 	if c.config.ClientAuth >= RequestClientCert {
		handshake_server.go#L647: 	if c.config.ClientAuth >= RequestClientCert {
		handshake_server.go#L892: 	if len(certs) == 0 && requiresClientCert(c.config.ClientAuth) {
		handshake_server.go#L901: 	if c.config.ClientAuth >= VerifyClientCertIfGiven && len(certs) > 0 {
		handshake_server_tls13.go#L365: 		needClientCerts := requiresClientCert(c.config.ClientAuth)
		handshake_server_tls13.go#L369: 		if sessionHasClientCerts && c.config.ClientAuth == NoClientCert {
		handshake_server_tls13.go#L375: 		if sessionHasClientCerts && c.config.ClientAuth >= VerifyClientCertIfGiven &&
		handshake_server_tls13.go#L704: 	return hs.c.config.ClientAuth >= RequestClientCert && !hs.usingPSK