type crypto/tls.SessionState

23 uses

	crypto/tls (current package)
		common.go#L726: 	UnwrapSession func(identity []byte, cs ConnectionState) (*SessionState, error)
		common.go#L742: 	WrapSession func(ConnectionState, *SessionState) ([]byte, error)
		handshake_client.go#L38: 	session      *SessionState // the session being resumed
		handshake_client.go#L380: 	session *SessionState, earlySecret, binderKey []byte, err error) {
		handshake_client_tls13.go#L28: 	session     *SessionState
		handshake_server.go#L35: 	sessionState *SessionState
		handshake_server.go#L427: 	var sessionState *SessionState
		handshake_server_tls13.go#L325: 		var sessionState *SessionState
		quic.go#L140: 	SessionState *SessionState
		quic.go#L322: func (q *QUICConn) StoreSession(session *SessionState) error {
		quic.go#L417: func (c *Conn) quicResumeSession(session *SessionState) error {
		quic.go#L431: func (c *Conn) quicStoreSession(session *SessionState) {
		ticket.go#L21: type SessionState struct {
		ticket.go#L108: func (s *SessionState) Bytes() ([]byte, error) {
		ticket.go#L182: func ParseSessionState(data []byte) (*SessionState, error) {
		ticket.go#L183: 	ss := &SessionState{}
		ticket.go#L293: func (c *Conn) sessionState() *SessionState {
		ticket.go#L294: 	return &SessionState{
		ticket.go#L311: func (c *Config) EncryptTicket(cs ConnectionState, ss *SessionState) ([]byte, error) {
		ticket.go#L352: func (c *Config) DecryptTicket(identity []byte, cs ConnectionState) (*SessionState, error) {
		ticket.go#L400: 	session *SessionState
		ticket.go#L408: func (cs *ClientSessionState) ResumptionState() (ticket []byte, state *SessionState, err error) {
		ticket.go#L420: func NewResumptionState(ticket []byte, state *SessionState) (*ClientSessionState, error) {