crypto/tls.clientHandshakeStateTLS13.hello (field)

26 uses

	crypto/tls (current package)
		handshake_client.go#L202: 			hello:       hello,
		handshake_client_tls13.go#L21: 	hello       *clientHelloMsg
		handshake_client_tls13.go#L50: 	if hs.ecdheParams == nil || len(hs.hello.keyShares) != 1 {
		handshake_client_tls13.go#L59: 	hs.transcript.Write(hs.hello.marshal())
		handshake_client_tls13.go#L136: 	if !bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
		handshake_client_tls13.go#L146: 	selectedSuite := mutualCipherSuiteTLS13(hs.hello.cipherSuites, hs.serverHello.cipherSuite)
		handshake_client_tls13.go#L196: 		hs.hello.cookie = hs.serverHello.cookie
		handshake_client_tls13.go#L209: 		for _, id := range hs.hello.supportedCurves {
		handshake_client_tls13.go#L233: 		hs.hello.keyShares = []keyShare{{group: curveID, data: params.PublicKey()}}
		handshake_client_tls13.go#L236: 	hs.hello.raw = nil
		handshake_client_tls13.go#L237: 	if len(hs.hello.pskIdentities) > 0 {
		handshake_client_tls13.go#L245: 			hs.hello.pskIdentities[0].obfuscatedTicketAge = ticketAge + hs.session.ageAdd
		handshake_client_tls13.go#L251: 			transcript.Write(hs.hello.marshalWithoutBinders())
		handshake_client_tls13.go#L253: 			hs.hello.updateBinders(pskBinders)
		handshake_client_tls13.go#L256: 			hs.hello.pskIdentities = nil
		handshake_client_tls13.go#L257: 			hs.hello.pskBinders = nil
		handshake_client_tls13.go#L261: 	hs.transcript.Write(hs.hello.marshal())
		handshake_client_tls13.go#L262: 	if _, err := c.writeRecord(recordTypeHandshake, hs.hello.marshal()); err != nil {
		handshake_client_tls13.go#L316: 	if int(hs.serverHello.selectedIdentity) >= len(hs.hello.pskIdentities) {
		handshake_client_tls13.go#L321: 	if len(hs.hello.pskIdentities) != 1 || hs.session == nil {
		handshake_client_tls13.go#L365: 	err := c.config.writeKeyLog(keyLogLabelClientHandshake, hs.hello.random, clientSecret)
		handshake_client_tls13.go#L370: 	err = c.config.writeKeyLog(keyLogLabelServerHandshake, hs.hello.random, serverSecret)
		handshake_client_tls13.go#L398: 		if len(hs.hello.alpnProtocols) == 0 {
		handshake_client_tls13.go#L402: 		if mutualProtocol([]string{encryptedExtensions.alpnProtocol}, hs.hello.alpnProtocols) == "" {
		handshake_client_tls13.go#L531: 	err = c.config.writeKeyLog(keyLogLabelClientTraffic, hs.hello.random, hs.trafficSecret)
		handshake_client_tls13.go#L536: 	err = c.config.writeKeyLog(keyLogLabelServerTraffic, hs.hello.random, serverSecret)