Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Encrypt on the fly via SFTP, software?
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Encrypt on the fly via SFTP, software?

Any software that encrypts files on the fly when moving them via SFTP? CloudBerry Drive does it but only on cloud storage accounts not on SFTP.

Comments

  • I guess something like cryptomator in conjuction with one of those SFTP drive programs

  • Just run the file/whatever locally through a packager (if multiple/dir), through gpg -e (by stdin) and then the stdout via the commandline sftp (or scp) binary to the FTP (or save as file and use sftp/scp binary to upload as usual).

    tar --numeric-owner -cz / | gpg --trust-model always --encrypt --recipient $gkey -o- |

    Thanked by 1Bochi
Sign In or Register to comment.