- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for ReadPartCheckSums (0.09 seconds)
-
internal/hash/checksum_test.go
} // Serialize what we got from ChecksumFromBytes serializedOut := chksmOut.AppendTo(nil, checksumCombined) // Read part checksums from serializedOut readParts := ReadPartCheckSums(serializedOut) expectedChecksums := []string{ part1Checksum.Encoded, part2Checksum.Encoded, part3Checksum.Encoded, } for i, expected := range expectedChecksums {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 22 14:15:21 GMT 2025 - 7.1K bytes - Click Count (0) -
internal/hash/checksum.go
res[xhttp.AmzChecksumType] = ckType } } } if len(res) == 0 { res = nil } return res, isMP } // ReadPartCheckSums will read all part checksums from b and return them. func ReadPartCheckSums(b []byte) (res []map[string]string) { for len(b) > 0 { t, n := binary.Uvarint(b) if n <= 0 { break } b = b[n:] typ := ChecksumType(t)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 22 14:15:21 GMT 2025 - 18.3K bytes - Click Count (0) -
cmd/encryption-v1.go
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 38K bytes - Click Count (0)