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