crypto/tls.clientHandshakeStateTLS13.transcript (field)
28 uses
crypto/tls (current package)
handshake_client_tls13.go#L32: transcript hash.Hash
handshake_client_tls13.go#L58: hs.transcript = hs.suite.hash.New()
handshake_client_tls13.go#L59: hs.transcript.Write(hs.hello.marshal())
handshake_client_tls13.go#L70: hs.transcript.Write(hs.serverHello.marshal())
handshake_client_tls13.go#L181: chHash := hs.transcript.Sum(nil)
handshake_client_tls13.go#L182: hs.transcript.Reset()
handshake_client_tls13.go#L183: hs.transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
handshake_client_tls13.go#L184: hs.transcript.Write(chHash)
handshake_client_tls13.go#L185: hs.transcript.Write(hs.serverHello.marshal())
handshake_client_tls13.go#L261: hs.transcript.Write(hs.hello.marshal())
handshake_client_tls13.go#L359: clientHandshakeTrafficLabel, hs.transcript)
handshake_client_tls13.go#L362: serverHandshakeTrafficLabel, hs.transcript)
handshake_client_tls13.go#L395: hs.transcript.Write(encryptedExtensions.marshal())
handshake_client_tls13.go#L437: hs.transcript.Write(certReq.marshal())
handshake_client_tls13.go#L456: hs.transcript.Write(certMsg.marshal())
handshake_client_tls13.go#L489: signed := signedMessage(sigHash, serverSignatureContext, hs.transcript)
handshake_client_tls13.go#L496: hs.transcript.Write(certVerify.marshal())
handshake_client_tls13.go#L515: expectedMAC := hs.suite.finishedHash(c.in.trafficSecret, hs.transcript)
handshake_client_tls13.go#L521: hs.transcript.Write(finished.marshal())
handshake_client_tls13.go#L526: clientApplicationTrafficLabel, hs.transcript)
handshake_client_tls13.go#L528: serverApplicationTrafficLabel, hs.transcript)
handshake_client_tls13.go#L542: c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
handshake_client_tls13.go#L569: hs.transcript.Write(certMsg.marshal())
handshake_client_tls13.go#L595: signed := signedMessage(sigHash, clientSignatureContext, hs.transcript)
handshake_client_tls13.go#L607: hs.transcript.Write(certVerifyMsg.marshal())
handshake_client_tls13.go#L619: verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
handshake_client_tls13.go#L622: hs.transcript.Write(finished.marshal())
handshake_client_tls13.go#L631: resumptionLabel, hs.transcript)
 |
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. |