isSSEHeader returns true if header is a server side encryption header.
(headerKey string)
| 548 | |
| 549 | // isSSEHeader returns true if header is a server side encryption header. |
| 550 | func isSSEHeader(headerKey string) bool { |
| 551 | return sseHeaders[strings.ToLower(headerKey)] |
| 552 | } |
| 553 | |
| 554 | // isAmzHeader returns true if header is a x-amz-meta-* or x-amz-acl header. |
| 555 | func isAmzHeader(headerKey string) bool { |
no outgoing calls