I want a way to backup my data fully encrypted somewhere and have custody of the keys - but importantly, the data should all be decrypted locally where all my apps can use the data without any network
tar -czf - /path/to/folder | gpg -c -o folder.tar.gz.gpg then scp/POST that somewhere /s..kinda
tar -czf - /path/to/folder | gpg -c -o folder.tar.gz.gpg then scp/POST that somewhere /s..kinda