crypto/tls.serverHandshakeStateTLS13.transcript (field)

29 uses

	crypto/tls (current package)
		handshake_server_tls13.go#L38: 	transcript      hash.Hash
		handshake_server_tls13.go#L183: 	hs.transcript = hs.suite.hash.New()
		handshake_server_tls13.go#L310: 		transcript := cloneHash(hs.transcript, hs.suite.hash)
		handshake_server_tls13.go#L415: 	hs.transcript.Write(hs.clientHello.marshal())
		handshake_server_tls13.go#L416: 	chHash := hs.transcript.Sum(nil)
		handshake_server_tls13.go#L417: 	hs.transcript.Reset()
		handshake_server_tls13.go#L418: 	hs.transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
		handshake_server_tls13.go#L419: 	hs.transcript.Write(chHash)
		handshake_server_tls13.go#L431: 	hs.transcript.Write(helloRetryRequest.marshal())
		handshake_server_tls13.go#L531: 	hs.transcript.Write(hs.clientHello.marshal())
		handshake_server_tls13.go#L532: 	hs.transcript.Write(hs.hello.marshal())
		handshake_server_tls13.go#L549: 		clientHandshakeTrafficLabel, hs.transcript)
		handshake_server_tls13.go#L552: 		serverHandshakeTrafficLabel, hs.transcript)
		handshake_server_tls13.go#L575: 	hs.transcript.Write(encryptedExtensions.marshal())
		handshake_server_tls13.go#L605: 		hs.transcript.Write(certReq.marshal())
		handshake_server_tls13.go#L617: 	hs.transcript.Write(certMsg.marshal())
		handshake_server_tls13.go#L631: 	signed := signedMessage(sigHash, serverSignatureContext, hs.transcript)
		handshake_server_tls13.go#L649: 	hs.transcript.Write(certVerifyMsg.marshal())
		handshake_server_tls13.go#L661: 		verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
		handshake_server_tls13.go#L664: 	hs.transcript.Write(finished.marshal())
		handshake_server_tls13.go#L675: 		clientApplicationTrafficLabel, hs.transcript)
		handshake_server_tls13.go#L677: 		serverApplicationTrafficLabel, hs.transcript)
		handshake_server_tls13.go#L691: 	c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
		handshake_server_tls13.go#L722: 	hs.clientFinished = hs.suite.finishedHash(c.in.trafficSecret, hs.transcript)
		handshake_server_tls13.go#L726: 	hs.transcript.Write(finishedMsg.marshal())
		handshake_server_tls13.go#L733: 		resumptionLabel, hs.transcript)
		handshake_server_tls13.go#L793: 	hs.transcript.Write(certMsg.marshal())
		handshake_server_tls13.go#L831: 		signed := signedMessage(sigHash, clientSignatureContext, hs.transcript)
		handshake_server_tls13.go#L838: 		hs.transcript.Write(certVerify.marshal())