Lines Matching defs:ClientSessionState
278 type ClientSessionState struct { struct
279 … []uint8 // Session ID supplied by the server. nil if the session has a ticket.
280 …essionTicket []uint8 // Encrypted ticket used for session resumption with server
281 vers uint16 // SSL/TLS version negotiated for the session
282 wireVersion uint16 // Wire SSL/TLS version negotiated for the session
283 cipherSuite uint16 // Ciphersuite negotiated for the session
284 masterSecret []byte // MasterSecret generated by client on a full handshake
285 handshakeHash []byte // Handshake hash for Channel ID purposes.
286 serverCertificates []*x509.Certificate // Certificate chain presented by the server
287 …terSecret bool // Whether an extended master secret was used to generate the session
288 sctList []byte
289 ocspResponse []byte
290 earlyALPN string
291 ticketCreationTime time.Time
292 ticketExpiration time.Time
293 ticketAgeAdd uint32
294 maxEarlyDataSize uint32
307 Put(sessionKey string, cs *ClientSessionState)