Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 85 for hashHead (0.13 sec)

  1. cmd/erasure-sets_test.go

    	}
    	if _, err := newErasureSets(ctx, ep, storageDisks, format, parity, 0); err != nil {
    		t.Fatalf("Unable to initialize erasure")
    	}
    }
    
    // TestHashedLayer - tests the hashed layer which will be returned
    // consistently for a given object name.
    func TestHashedLayer(t *testing.T) {
    	// Test distribution with 16 sets.
    	var objs [16]*erasureObjects
    	for i := range objs {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 12 07:21:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

            .isEqualTo(InetAddresses.forString("0.0.0.0"));
    
        // test compat address (should be hashed)
        assertThat(InetAddresses.getCoercedIPv4Address(InetAddresses.forString("::1.2.3.4")))
            .isNotEqualTo(InetAddresses.forString("1.2.3.4"));
    
        // test 6to4 address (should be hashed)
        assertThat(InetAddresses.getCoercedIPv4Address(InetAddresses.forString("2002:0102:0304::1")))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/security/oauth2-jwt.md

        ```Python hl_lines="8  49  56-57  60-61  70-76"
        {!> ../../../docs_src/security/tutorial004.py!}
        ```
    
    !!! note
        If you check the new (fake) database `fake_users_db`, you will see how the hashed password looks like now: `"$2b$12$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36WQoeG6Lruj3vjPGga31lW"`.
    
    ## Handle JWT tokens
    
    Import the modules installed.
    
    Create a random secret key that will be used to sign the JWT tokens.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/extra-models.md

    This is especially the case for user models, because:
    
    * The **input model** needs to be able to have a password.
    * The **output model** should not have a password.
    * The **database model** would probably need to have a hashed password.
    
    !!! danger
        Never store user's plaintext passwords. Always store a "secure hash" that you can then verify.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

                    {
                        val schema = projectSchemaFor(pluginRequestsOf(scriptPlugins.first(), uniquePluginRequests)).get()
                        val hashed = HashedProjectSchema(schema)
                        scriptPlugins.map { hashed to it }
                    },
                    { (error, stdout, stderr) ->
                        reportProjectSchemaError(scriptPlugins, stdout, stderr, error)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top