is there any way I can encrypt data uploaded to s3? #33
-
I would like to keep only encrypted data in the cloud, so I'm wondering if there's a way to configure the tool to encrypt data before the upload? or are there plans to implement it? I've checked docs and "feature requests" so the chance is slim but still... if there are no plans like that in the foreseeable future, then another question: assuming I will upload files taken from syncthing produced by that encryption, is there anything in the exfilac tool that will prevent me from doing it (like if triggers or upload will ignore/break)? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
There aren't any current plans to implement it, and I'm not entirely sure how it would be implemented safely.
I'm very skeptical about adding any sort of intelligence in to the app (including encryption) simply because Android is such an error-prone platform, and there are too many ways for this kind of thing to go wrong. When an app like this goes wrong, people's data is at risk... The philosophy of Have you considered running a MinIO instance locally? I share your apparent distrust of third-party services. I use |
Beta Was this translation helpful? Give feedback.
There aren't any current plans to implement it, and I'm not entirely sure how it would be implemented safely.
exfilac
treats all objects in the filesystem as opaque blobs. It'll blindly upload any files that are placed in any of the locations that you've specified.I'm very skeptical about ad…