Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hdr (0.11 sec)

  1. internal/hash/checksum.go

    func getContentChecksum(h http.Header) (t ChecksumType, s string) {
    	t = ChecksumNone
    	alg := h.Get(xhttp.AmzChecksumAlgo)
    	if alg != "" {
    		t |= NewChecksumType(alg)
    		if t.IsSet() {
    			hdr := t.Key()
    			if s = h.Get(hdr); s == "" {
    				return ChecksumNone, ""
    			}
    		}
    		return t, s
    	}
    	checkType := func(c ChecksumType) {
    		if got := h.Get(c.Key()); got != "" {
    			// If already set, invalid
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 11.9K bytes
    - Viewed (0)
Back to top