crypto/tls.clientHandshakeStateTLS13.suite (field)
27 uses
crypto/tls (current package)
handshake_client_tls13.go#L31: suite *cipherSuiteTLS13
handshake_client_tls13.go#L58: hs.transcript = hs.suite.hash.New()
handshake_client_tls13.go#L147: if hs.suite != nil && selectedSuite != hs.suite {
handshake_client_tls13.go#L155: hs.suite = selectedSuite
handshake_client_tls13.go#L156: c.cipherSuite = hs.suite.id
handshake_client_tls13.go#L242: if pskSuite.hash == hs.suite.hash {
handshake_client_tls13.go#L247: transcript := hs.suite.hash.New()
handshake_client_tls13.go#L252: pskBinders := [][]byte{hs.suite.finishedHash(hs.binderKey, transcript)}
handshake_client_tls13.go#L328: if pskSuite.hash != hs.suite.hash {
handshake_client_tls13.go#L353: earlySecret = hs.suite.extract(nil, nil)
handshake_client_tls13.go#L355: handshakeSecret := hs.suite.extract(sharedKey,
handshake_client_tls13.go#L356: hs.suite.deriveSecret(earlySecret, "derived", nil))
handshake_client_tls13.go#L358: clientSecret := hs.suite.deriveSecret(handshakeSecret,
handshake_client_tls13.go#L360: c.out.setTrafficSecret(hs.suite, clientSecret)
handshake_client_tls13.go#L361: serverSecret := hs.suite.deriveSecret(handshakeSecret,
handshake_client_tls13.go#L363: c.in.setTrafficSecret(hs.suite, serverSecret)
handshake_client_tls13.go#L376: hs.masterSecret = hs.suite.extract(nil,
handshake_client_tls13.go#L377: hs.suite.deriveSecret(handshakeSecret, "derived", nil))
handshake_client_tls13.go#L515: expectedMAC := hs.suite.finishedHash(c.in.trafficSecret, hs.transcript)
handshake_client_tls13.go#L525: hs.trafficSecret = hs.suite.deriveSecret(hs.masterSecret,
handshake_client_tls13.go#L527: serverSecret := hs.suite.deriveSecret(hs.masterSecret,
handshake_client_tls13.go#L529: c.in.setTrafficSecret(hs.suite, serverSecret)
handshake_client_tls13.go#L542: c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
handshake_client_tls13.go#L619: verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
handshake_client_tls13.go#L627: c.out.setTrafficSecret(hs.suite, hs.trafficSecret)
handshake_client_tls13.go#L630: c.resumptionSecret = hs.suite.deriveSecret(hs.masterSecret,
 |
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. |