Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newFinishedHash (0.15 sec)

  1. src/crypto/tls/handshake_server.go

    	// secret and it's potentially encrypted with the same key, to help the
    	// client avoid cross-connection tracking from a network observer.
    	hs.hello.ticketSupported = true
    	hs.finishedHash = newFinishedHash(c.vers, hs.suite)
    	hs.finishedHash.discardHandshakeBuffer()
    	if err := transcriptMsg(hs.clientHello, &hs.finishedHash); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client.go

    func (hs *clientHandshakeState) handshake() error {
    	c := hs.c
    
    	isResume, err := hs.processServerHello()
    	if err != nil {
    		return err
    	}
    
    	hs.finishedHash = newFinishedHash(c.vers, hs.suite)
    
    	// No signatures of the handshake are needed in a resumption.
    	// Otherwise, in a full handshake, if we don't have any certificates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
Back to top