- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ReadPartCheckSums (0.14 sec)
-
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 {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 22 14:15:21 UTC 2025 - 7.1K bytes - Viewed (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)
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 22 14:15:21 UTC 2025 - 18.3K bytes - Viewed (0) -
cmd/encryption-v1.go
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 38K bytes - Viewed (0)