Re: AWS v4 Signature algorithm required for generic-S3

2020-12-11 Thread Andrew Gaul
Some background, there is a generic s3 api with most of the functionality and an aws-s3 provider which inherits from the former and overrides the endpoints. The aws-s3 provider also overrides the signer that you can see in AWSS3HttpApiModule.bindRequestSigner and

Re: AWS v4 Signature algorithm required for generic-S3

2020-12-11 Thread John Calcote
Andrew, I would love to submit this PR. But I'm going to need some guidance. I'm a pretty good coder, but I must tell you that there are big gaps in my understanding of how the jclouds code works. Can you please point me in the right direction? Tell me which files to look at and I'll try to

Re: AWS v4 Signature algorithm required for generic-S3

2020-12-11 Thread Andrew Gaul
1) and 2) are hacky but will work. However we should really properly support this by giving the generic S3 provider a property. This would require reparenting some code from aws-s3 to s3. Would you be able to submit a PR for this? The unsigned payload is also a desired feature and easy to add