SignV4Express sign the request before Do(), in accordance with http://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html.
(req http.Request, accessKeyID, secretAccessKey, sessionToken, location string)
| 412 | // SignV4Express sign the request before Do(), in accordance with |
| 413 | // http://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html. |
| 414 | func SignV4Express(req http.Request, accessKeyID, secretAccessKey, sessionToken, location string) *http.Request { |
| 415 | return signV4(req, accessKeyID, secretAccessKey, sessionToken, location, ServiceTypeS3Express, nil) |
| 416 | } |
| 417 | |
| 418 | // SignV4TrailerExpress sign the request before Do(), in accordance with |
| 419 | // http://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html |
no test coverage detected