Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for hashOf (0.11 sec)

  1. src/crypto/x509/x509.go

    	// three buckets by requiring that the MGF1 hash function always match the
    	// message hash function (as recommended in RFC 3447, Section 8.1), that the
    	// salt length matches the hash length, and that the trailer field has the
    	// default value.
    	if (len(params.Hash.Parameters.FullBytes) != 0 && !bytes.Equal(params.Hash.Parameters.FullBytes, asn1.NullBytes)) ||
    		!params.MGF.Algorithm.Equal(oidMGF1) ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    		fmt.Fprintf(os.Stderr, "go: to add module requirements and sums:\n\tgo mod tidy\n")
    	}
    }
    
    // fixVersion returns a modfile.VersionFixer implemented using the Query function.
    //
    // It resolves commit hashes and branch names to versions,
    // canonicalizes versions that appeared in early vgo drafts,
    // and does nothing for versions that already appear to be canonical.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    	JMP	aeshashbody<>(SB)
    noaes:
    	JMP	runtime·strhashFallback<ABIInternal>(SB)
    
    // AX: data
    // BX: hash seed
    // CX: length
    // At return: AX = return value
    TEXT aeshashbody<>(SB),NOSPLIT,$0-0
    	// Fill an SSE register with our seeds.
    	MOVQ	BX, X0				// 64 bits of per-table hash seed
    	PINSRW	$4, CX, X0			// 16 bits of length
    	PSHUFHW $0, X0, X0			// repeat length 4 times total
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    				{
    					Hostname:       "a17061.example.com",
    					Resolution:     model.DNSLB,
    					DefaultAddress: "0.0.0.0",
    				},
    				{
    					// hashes to the same value as the hostname above,
    					// a new collision needs to be found if the hash algorithm changes
    					Hostname:       "a44155.example.com",
    					Resolution:     model.DNSLB,
    					DefaultAddress: "0.0.0.0",
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    	// do not cache link outputs.)
    	//
    	// Second, we compute a hash of the values of the
    	// environment variables and the content of the files
    	// listed in the log from the previous run.
    	// Then we look up test output using a combination of
    	// the hash from the first part (testID) and the hash of the
    	// test inputs (testInputsID).
    	//
    	// In order to store a new test result, we must redo the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top