|
|
@ -210,7 +210,7 @@ func (r Signature) getPresignedCanonicalRequest(presignedQuery string) string { |
|
|
|
func (r Signature) getScope(t time.Time) string { |
|
|
|
func (r Signature) getScope(t time.Time) string { |
|
|
|
scope := strings.Join([]string{ |
|
|
|
scope := strings.Join([]string{ |
|
|
|
t.Format(yyyymmdd), |
|
|
|
t.Format(yyyymmdd), |
|
|
|
"milkyway", |
|
|
|
"us-east-1", |
|
|
|
"s3", |
|
|
|
"s3", |
|
|
|
"aws4_request", |
|
|
|
"aws4_request", |
|
|
|
}, "/") |
|
|
|
}, "/") |
|
|
@ -229,7 +229,7 @@ func (r Signature) getStringToSign(canonicalRequest string, t time.Time) string |
|
|
|
func (r Signature) getSigningKey(t time.Time) []byte { |
|
|
|
func (r Signature) getSigningKey(t time.Time) []byte { |
|
|
|
secret := r.SecretAccessKey |
|
|
|
secret := r.SecretAccessKey |
|
|
|
date := sumHMAC([]byte("AWS4"+secret), []byte(t.Format(yyyymmdd))) |
|
|
|
date := sumHMAC([]byte("AWS4"+secret), []byte(t.Format(yyyymmdd))) |
|
|
|
region := sumHMAC(date, []byte("milkyway")) |
|
|
|
region := sumHMAC(date, []byte("us-east-1")) |
|
|
|
service := sumHMAC(region, []byte("s3")) |
|
|
|
service := sumHMAC(region, []byte("s3")) |
|
|
|
signingKey := sumHMAC(service, []byte("aws4_request")) |
|
|
|
signingKey := sumHMAC(service, []byte("aws4_request")) |
|
|
|
return signingKey |
|
|
|
return signingKey |
|
|
|