rclone/backend/s3
Nick Craig-Wood 2f0ef2e983 s3: fix v2 auth for multipart server side copy
Before this change the v2 signer sorted the headers for signing as
joined key:value pairs. However this put these two headers in the
wrong order.

    x-amz-copy-source-range:
    x-amz-copy-source:

This changes sorts on the keys before joining the values producing the
correct sort order.

    x-amz-copy-source:
    x-amz-copy-source-range:

This commit also adds some missing query parameters for signing that I
spotted in the s3cmd source.
2020-10-26 12:43:54 +00:00
..
s3.go s3: fix KS3 problem where multipart uploads have valid md5sums as Etags 2020-10-26 12:43:54 +00:00
s3_test.go s3: fix SetModTime on GLACIER/ARCHIVE objects and implement set/get tier 2019-09-14 09:18:55 +01:00
v2sign.go s3: fix v2 auth for multipart server side copy 2020-10-26 12:43:54 +00:00