File: s3_server_side_encryption.mdwn

package info (click to toggle)
git-annex 7.20190129-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 56,292 kB
  • sloc: haskell: 59,105; sh: 1,255; makefile: 225; perl: 136; ansic: 44
file content (9 lines) | stat: -rw-r--r-- 490 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
AWS S3 offers a feature to enable server-side encryption of files.  
If I understand correctly, this is enabled by sending a specific HTTP header with the request to upload the file in question.   
So, this header needs to be set every time we want to upload a new file.  

Is this feature already supported / being considered for future versions?

If not, am I correct in assuming it would have to be implemented in https://github.com/joeyh/git-annex/blob/master/Remote/S3.hs ?

Thank you