crypto/tls.finishedMsg.marshal (method)

13 uses

	crypto/tls (current package)
		handshake_client.go#L769: 	hs.finishedHash.Write(serverFinished.marshal())
		handshake_client.go#L815: 	hs.finishedHash.Write(finished.marshal())
		handshake_client.go#L816: 	if _, err := c.writeRecord(recordTypeHandshake, finished.marshal()); err != nil {
		handshake_client_tls13.go#L521: 	hs.transcript.Write(finished.marshal())
		handshake_client_tls13.go#L622: 	hs.transcript.Write(finished.marshal())
		handshake_client_tls13.go#L623: 	if _, err := c.writeRecord(recordTypeHandshake, finished.marshal()); err != nil {
		handshake_messages.go#L1544: func (m *finishedMsg) marshal() []byte {
		handshake_server.go#L701: 	hs.finishedHash.Write(clientFinished.marshal())
		handshake_server.go#L758: 	hs.finishedHash.Write(finished.marshal())
		handshake_server.go#L759: 	if _, err := c.writeRecord(recordTypeHandshake, finished.marshal()); err != nil {
		handshake_server_tls13.go#L664: 	hs.transcript.Write(finished.marshal())
		handshake_server_tls13.go#L665: 	if _, err := c.writeRecord(recordTypeHandshake, finished.marshal()); err != nil {
		handshake_server_tls13.go#L726: 	hs.transcript.Write(finishedMsg.marshal())