Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 92 of 92 for rthash (0.21 sec)

  1. src/runtime/vdso_linux.go

    	if gnuhash != nil {
    		// Parse the GNU hash table header.
    		nbucket := gnuhash[0]
    		info.symOff = gnuhash[1]
    		bloomSize := gnuhash[2]
    		info.bucket = gnuhash[4+bloomSize*uint32(vdsoBloomSizeScale):][:nbucket]
    		info.chain = gnuhash[4+bloomSize*uint32(vdsoBloomSizeScale)+nbucket:]
    		info.isGNUHash = true
    	} else {
    		// Parse the hash table header.
    		nbucket := hash[0]
    		nchain := hash[1]
    		info.bucket = hash[2 : 2+nbucket]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  2. src/crypto/tls/prf.go

    type finishedHash struct {
    	client hash.Hash
    	server hash.Hash
    
    	// Prior to TLS 1.2, an additional MD5 hash is required.
    	clientMD5 hash.Hash
    	serverMD5 hash.Hash
    
    	// In TLS 1.2, a full buffer is sadly required.
    	buffer []byte
    
    	version uint16
    	prf     func(result, secret, label, seed []byte)
    }
    
    func (h *finishedHash) Write(msg []byte) (n int, err error) {
    	h.client.Write(msg)
    	h.server.Write(msg)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top