crypto/tls.clientHandshakeState.session (field)
15 uses
crypto/tls (current package)
handshake_client.go#L32: session *ClientSessionState
handshake_client.go#L217: session: session,
handshake_client.go#L226: if cacheKey != "" && hs.session != nil && session != hs.session {
handshake_client.go#L227: c.config.ClientSessionCache.Put(cacheKey, hs.session)
handshake_client.go#L670: return hs.session != nil && hs.hello.sessionId != nil &&
handshake_client.go#L722: if hs.session.vers != c.vers {
handshake_client.go#L727: if hs.session.cipherSuite != hs.suite.id {
handshake_client.go#L733: hs.masterSecret = hs.session.masterSecret
handshake_client.go#L734: c.peerCertificates = hs.session.serverCertificates
handshake_client.go#L735: c.verifiedChains = hs.session.verifiedChains
handshake_client.go#L736: c.ocspResponse = hs.session.ocspResponse
handshake_client.go#L739: if len(c.scts) == 0 && len(hs.session.scts) != 0 {
handshake_client.go#L740: c.scts = hs.session.scts
handshake_client.go#L791: hs.session = &ClientSessionState{
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |