Home | History | Annotate | Download | only in tls

Lines Matching full:session

194 	sessionTicket      []uint8               // Encrypted ticket used for session resumption with server
195 vers uint16 // SSL/TLS version negotiated for the session
196 cipherSuite uint16 // Ciphersuite negotiated for the session
203 // by a client to resume a TLS session with a given server. ClientSessionCache
209 Get(sessionKey string) (session *ClientSessionState, ok bool)
318 // SessionTicketsDisabled may be set to true to disable session ticket
322 // SessionTicketKey is used by TLS servers to provide session
332 // SessionCache is a cache of ClientSessionState entries for TLS session
362 // an encrypted session ticket in order to identify the key used to encrypt it.
365 // ticketKey is the internal representation of a session ticket key.
367 // keyName is an opaque byte string that serves to identify the session
368 // ticket key. It's exposed as plaintext in every session ticket.
374 // ticketKeyFromBytes converts from the external representation of a session
375 // ticket key to a ticketKey. Externally, session ticket keys are 32 random
417 // SetSessionTicketKeys updates the session ticket keys for a server. The first
420 // running in order to rotate the session ticket keys. The function will panic