crypto/tls.serverHandshakeState.hello (field)

26 uses

	crypto/tls (current package)
		handshake_server.go#L27: 	hello        *serverHelloMsg
		handshake_server.go#L120: 	c.ekm = ekmFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.clientHello.random, hs.hello.random)
		handshake_server.go#L170: 	hs.hello = new(serverHelloMsg)
		handshake_server.go#L171: 	hs.hello.vers = c.vers
		handshake_server.go#L187: 	hs.hello.random = make([]byte, 32)
		handshake_server.go#L188: 	serverRandom := hs.hello.random
		handshake_server.go#L210: 	hs.hello.secureRenegotiationSupported = hs.clientHello.secureRenegotiationSupported
		handshake_server.go#L211: 	hs.hello.compressionMethod = compressionNone
		handshake_server.go#L218: 			hs.hello.alpnProtocol = selectedProto
		handshake_server.go#L233: 		hs.hello.scts = hs.cert.SignedCertificateTimestamps
		handshake_server.go#L244: 		hs.hello.supportedPoints = []uint8{pointFormatUncompressed}
		handshake_server.go#L425: 	hs.hello.cipherSuite = hs.suite.id
		handshake_server.go#L429: 	hs.hello.sessionId = hs.clientHello.sessionId
		handshake_server.go#L430: 	hs.hello.ticketSupported = hs.sessionState.usedOldKey
		handshake_server.go#L434: 	hs.finishedHash.Write(hs.hello.marshal())
		handshake_server.go#L435: 	if _, err := c.writeRecord(recordTypeHandshake, hs.hello.marshal()); err != nil {
		handshake_server.go#L461: 		hs.hello.ocspStapling = true
		handshake_server.go#L464: 	hs.hello.ticketSupported = hs.clientHello.ticketSupported && !c.config.SessionTicketsDisabled
		handshake_server.go#L465: 	hs.hello.cipherSuite = hs.suite.id
		handshake_server.go#L474: 	hs.finishedHash.Write(hs.hello.marshal())
		handshake_server.go#L475: 	if _, err := c.writeRecord(recordTypeHandshake, hs.hello.marshal()); err != nil {
		handshake_server.go#L486: 	if hs.hello.ocspStapling {
		handshake_server.go#L496: 	skx, err := keyAgreement.generateServerKeyExchange(c.config, hs.cert, hs.clientHello, hs.hello)
		handshake_server.go#L596: 	hs.masterSecret = masterFromPreMasterSecret(c.vers, hs.suite, preMasterSecret, hs.clientHello.random, hs.hello.random)
		handshake_server.go#L656: 		keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.clientHello.random, hs.hello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
		handshake_server.go#L710: 	if !hs.hello.ticketSupported {