Verify Object Integrity Using Checksums in Stook
Learn how to validate object integrity in Stook using checksums exposed through ETag.
Requirements
Retrieve the checksum (ETag) from Stook
Use AWS CLI
aws s3api --endpoint-url https://<ENDPOINT_URL> \
head-object \
--bucket <BUCKET_NAME> \
--key <OBJECT_KEY> \
--profile <AWS_PROFILE>Use MinIO Client (mc)
Use curl over the Stook endpoint
Understand ETag and multipart behavior
Compute a local checksum in Python (Optionally)
Example — Compute an MD5 checksum in Python
Example — Compute a SHA-256 checksum in Python
Troubleshoot checksum mismatches
Summary
Last updated
Was this helpful?