Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 93 for hashHead (0.16 sec)

  1. src/cmd/internal/obj/objfile.go

    	}
    
    	// Symbol definitions
    	h.Offsets[goobj.BlkSymdef] = w.Offset()
    	for _, s := range ctxt.defs {
    		w.Sym(s)
    	}
    
    	// Short hashed symbol definitions
    	h.Offsets[goobj.BlkHashed64def] = w.Offset()
    	for _, s := range ctxt.hashed64defs {
    		w.Sym(s)
    	}
    
    	// Hashed symbol definitions
    	h.Offsets[goobj.BlkHasheddef] = w.Offset()
    	for _, s := range ctxt.hasheddefs {
    		w.Sym(s)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    sealAVX2Tail128:
    	// Need to decrypt up to 128 bytes - prepare two blocks
    	// If we got here after the main loop - there are 512 encrypted bytes waiting to be hashed
    	// If we got here before the main loop - there are 448 encrpyred bytes waiting to be hashed
    	VMOVDQA ·chacha20Constants<>(SB), AA0
    	VMOVDQA state1StoreAVX2, BB0
    	VMOVDQA state2StoreAVX2, CC0
    	VMOVDQA ctr3StoreAVX2, DD0
    	VPADDD  ·avx2IncMask<>(SB), DD0, DD0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/util/ipvs_linux.go

    	}
    
    	// Test FlagHashed (0x2). A valid flag must include FlagHashed
    	if svc.Flags&FlagHashed == 0 {
    		return nil, fmt.Errorf("Flags of successfully created IPVS service should enable the flag (%x) since every service is hashed into the service table", FlagHashed)
    	}
    	// Sub Flags to 0x2
    	// 011 -> 001, 010 -> 000
    	vs.Flags = ServiceFlags(svc.Flags &^ uint32(FlagHashed))
    
    	if vs.Address == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. src/cmd/internal/objfile/goobj.go

    	r := f.r
    	if f.arch == nil {
    		return "", 0, nil
    	}
    	getSymData := func(s goobj.SymRef) []byte {
    		if s.PkgIdx != goobj.PkgIdxHashed {
    			// We don't need the data for non-hashed symbols, yet.
    			panic("not supported")
    		}
    		i := uint32(s.SymIdx + uint32(r.NSym()+r.NHashed64def()))
    		return r.BytesAt(r.DataOff(i), r.DataSize(i))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. src/crypto/tls/prf.go

    	out := make([]byte, finishedVerifyLength)
    	h.prf(out, masterSecret, serverFinishedLabel, h.Sum())
    	return out
    }
    
    // hashForClientCertificate returns the handshake messages so far, pre-hashed if
    // necessary, suitable for signing by a TLS client certificate.
    func (h finishedHash) hashForClientCertificate(sigType uint8, hashAlg crypto.Hash) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    // Holds the loader along with temporary states for loading symbols.
    type loadState struct {
    	l            *Loader
    	hashed64Syms map[uint64]symAndSize         // short hashed (content-addressable) symbols, keyed by content hash
    	hashedSyms   map[goobj.HashType]symAndSize // hashed (content-addressable) symbols, keyed by content hash
    
    	linknameVarRefs []linknameVarRef // linknamed var refererces
    }
    
    type linknameVarRef struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/sql-databases.md

        But as what the API client provides is the original password, you need to extract it and generate the hashed password in your application.
    
        And then pass the `hashed_password` argument with the value to save.
    
    !!! warning
        This example is not secure, the password is not hashed.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  8. cmd/erasure-metadata-utils.go

    	diskCount := 0
    	for _, disk := range disks {
    		if disk == nil {
    			continue
    		}
    		diskCount++
    	}
    	return diskCount
    }
    
    // hashOrder - hashes input key to return consistent
    // hashed integer slice. Returned integer order is salted
    // with an input key. This results in consistent order.
    // NOTE: collisions are fine, we are not looking for uniqueness
    // in the slices returned.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/typestring.go

    		if t.obj == nil {
    			w.error("unnamed type parameter")
    			break
    		}
    		if i := tparamIndex(w.tparams.list(), t); i >= 0 {
    			// The names of type parameters that are declared by the type being
    			// hashed are not part of the type identity. Replace them with a
    			// placeholder indicating their index.
    			w.string(fmt.Sprintf("$%d", i))
    		} else {
    			w.string(t.obj.name)
    			if w.tpSubscripts || w.ctxt != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/crypto/sha1/sha1_test.go

    		}
    	}
    }
    
    // Tests for unmarshaling hashes that have hashed a large amount of data
    // The initial hash generation is omitted from the test, because it takes a long time.
    // The test contains some already-generated states, and their expected sums
    // Tests a problem that is outlined in GitHub issue #29543
    // The problem is triggered when an amount of data has been hashed for which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 18.3K bytes
    - Viewed (0)
Back to top