mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
6fe2703665
* Remove `make updatedeps` from Travis build. We'll follow up with more specific plans around dependency updating in subsequent PRs. * Update all `make` targets to set `GO15VENDOREXPERIMENT=1` and to filter out `/vendor/` from `./...` where appropriate. * Temporarily remove `vet` from the `make test` target until we can figure out how to get it to not vet `vendor/`. (Initial experimentation failed to yield the proper incantation.) Everything is pinned to current master, with the exception of: * Azure/azure-sdk-for-go which is pinned before the breaking change today * aws/aws-sdk-go which is pinned to the most recent tag The documentation still needs to be updated, which we can do in a follow up PR. The goal here is to unblock release.
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
package s3
|
|
|
|
import (
|
|
"crypto/md5"
|
|
"encoding/base64"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/awserr"
|
|
"github.com/aws/aws-sdk-go/aws/awsutil"
|
|
"github.com/aws/aws-sdk-go/aws/request"
|
|
)
|
|
|
|
var errSSERequiresSSL = awserr.New("ConfigError", "cannot send SSE keys over HTTP.", nil)
|
|
|
|
func validateSSERequiresSSL(r *request.Request) {
|
|
if r.HTTPRequest.URL.Scheme != "https" {
|
|
p, _ := awsutil.ValuesAtPath(r.Params, "SSECustomerKey||CopySourceSSECustomerKey")
|
|
if len(p) > 0 {
|
|
r.Error = errSSERequiresSSL
|
|
}
|
|
}
|
|
}
|
|
|
|
func computeSSEKeys(r *request.Request) {
|
|
headers := []string{
|
|
"x-amz-server-side-encryption-customer-key",
|
|
"x-amz-copy-source-server-side-encryption-customer-key",
|
|
}
|
|
|
|
for _, h := range headers {
|
|
md5h := h + "-md5"
|
|
if key := r.HTTPRequest.Header.Get(h); key != "" {
|
|
// Base64-encode the value
|
|
b64v := base64.StdEncoding.EncodeToString([]byte(key))
|
|
r.HTTPRequest.Header.Set(h, b64v)
|
|
|
|
// Add MD5 if it wasn't computed
|
|
if r.HTTPRequest.Header.Get(md5h) == "" {
|
|
sum := md5.Sum([]byte(key))
|
|
b64sum := base64.StdEncoding.EncodeToString(sum[:])
|
|
r.HTTPRequest.Header.Set(md5h, b64sum)
|
|
}
|
|
}
|
|
}
|
|
}
|