Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,453 for hashed (0.18 sec)

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

    	if contentHashSection(s) != 0 {
    		panic("short hash of non-default-section sym " + s.Name)
    	}
    	var b goobj.Hash64Type
    	copy(b[:], s.P)
    	return b
    }
    
    // Compute the content hash for a content-addressable symbol.
    // We build a content hash based on its content and relocations.
    // Depending on the category of the referenced symbol, we choose
    // different hash algorithms such that the hash is globally
    // consistent.
    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. android/guava/src/com/google/common/hash/HashFunction.java

     * </ul>
     *
     * <h3>Providing input to a hash function</h3>
     *
     * <p>The primary way to provide the data that your hash function should act on is via a {@link
     * Hasher}. Obtain a new hasher from the hash function using {@link #newHasher}, "push" the relevant
     * data into it using methods like {@link Hasher#putBytes(byte[])}, and finally ask for the {@code
     * HashCode} when finished using {@link Hasher#hash}. (See an {@linkplain #newHasher example} of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/HashFunction.java

     * </ul>
     *
     * <h3>Providing input to a hash function</h3>
     *
     * <p>The primary way to provide the data that your hash function should act on is via a {@link
     * Hasher}. Obtain a new hasher from the hash function using {@link #newHasher}, "push" the relevant
     * data into it using methods like {@link Hasher#putBytes(byte[])}, and finally ask for the {@code
     * HashCode} when finished using {@link Hasher#hash}. (See an {@linkplain #newHasher example} of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/link/internal/loader/loader.go

    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)
  9. 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)
  10. src/crypto/md5/md5_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 #29541
    // 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: Thu Sep 23 16:54:46 UTC 2021
    - 17.4K bytes
    - Viewed (0)
Back to top