Skip to content

how can check 300GB file integrity(checksum) downloaded on network path from s3 payerbucket in c# #3306

Discussion options

You must be logged in to vote

@krishsingh-git You could try checking Checking object integrity and New – Additional Checksum Algorithms for Amazon S3.

SDK(s) also have support for flexible checksums.

  • If the object was uploaded with flexible checksums, users should be able to set getObjectRequest.ChecksumMode = ChecksumMode.Enabled to trigger the SDK to validate the integrity as the response stream is read.
  • BUT, we skip that if the object was multi-part uploaded, since the checksum is actually a checksum-of-checksums (SDK has the check here)
  • So you would need to validate checksums on a part-by-part basis.

Thanks,
Ashish

Replies: 3 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@ashishdhingra
Comment options

Answer selected by ashishdhingra
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
response-requested Waiting on additional info and feedback. Will move to "closing-soon" in 7 days. s3
2 participants