crypto/tls.clientHelloMsg.supportedSignatureAlgorithms (field)

16 uses

	crypto/tls (current package)
		handshake_client.go#L116: 		hello.supportedSignatureAlgorithms = supportedSignatureAlgorithms
		handshake_messages.go#L82: 	supportedSignatureAlgorithms     []SignatureScheme
		handshake_messages.go#L172: 			if len(m.supportedSignatureAlgorithms) > 0 {
		handshake_messages.go#L177: 						for _, sigAlgo := range m.supportedSignatureAlgorithms {
		handshake_messages.go#L468: 				m.supportedSignatureAlgorithms = append(
		handshake_messages.go#L469: 					m.supportedSignatureAlgorithms, SignatureScheme(sigAndAlg))
		handshake_server.go#L842: 		SignatureSchemes:  clientHello.supportedSignatureAlgorithms,
		handshake_server_tls13.go#L373: 	if len(hs.clientHello.supportedSignatureAlgorithms) == 0 {
		handshake_server_tls13.go#L386: 	hs.sigAlg, err = selectSignatureScheme(c.vers, certificate, hs.clientHello.supportedSignatureAlgorithms)
		handshake_server_tls13.go#L477: 		len(ch.supportedSignatureAlgorithms) != len(ch1.supportedSignatureAlgorithms) ||
		handshake_server_tls13.go#L497: 	for i := range ch.supportedSignatureAlgorithms {
		handshake_server_tls13.go#L498: 		if ch.supportedSignatureAlgorithms[i] != ch1.supportedSignatureAlgorithms[i] {
		key_agreement.go#L185: 		signatureAlgorithm, err = selectSignatureScheme(ka.version, cert, clientHello.supportedSignatureAlgorithms)
		key_agreement.go#L298: 		if !isSupportedSignatureAlgorithm(signatureAlgorithm, clientHello.supportedSignatureAlgorithms) {