stefansundin / s3verify

Verify that a local file is identical to an object on Amazon S3, without having to download the object. :detective:

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

s3verify is a program that can verify that a local file is identical to an object on Amazon S3, without having to download the object.

The S3 objects must be uploaded using the Additional Checksum Algorithms feature released in February 2022. For objects that weren't uploaded using that you might find s3sha256sum useful instead.

Installation

You can download precompiled binaries from the releases section.

If you prefer to compile from source (or to use unreleased features), you can install using go install:

go install github.com/stefansundin/s3verify@latest

Usage

$ s3verify --help
Usage: s3verify [options] <LocalPath> <S3Uri>
LocalPath can be - for stdin.
S3Uri must have the format s3://<bucketname>/<key>.

Options:
      --ca-bundle string      The CA certificate bundle to use when verifying SSL certificates.
      --debug                 Turn on debug logging.
      --endpoint-url string   Override the S3 endpoint URL. (for use with S3 compatible APIs)
  -h, --help                  Show this help.
      --no-sign-request       Do not sign requests. This does not work with Amazon S3, but may work with other S3 APIs.
      --no-verify-ssl         Do not verify SSL certificates.
      --profile string        Use a specific profile from your credential file.
      --region string         The region to use. Overrides config/env settings. Avoids one API call.
      --use-path-style        Use S3 Path Style.
      --version               Print version number.
      --version-id string     Version ID used to reference a specific version of the S3 object.

About

Verify that a local file is identical to an object on Amazon S3, without having to download the object. :detective:

License:GNU General Public License v3.0


Languages

Language:Go 87.5%Language:Makefile 12.5%