in reply to Encrypting a Filename
This way you can just do something like this:
Or, what about rsync, using ssh as the rsh replacement? I don't know enough about that to know whether it encrypts filenames going over the network, but I would *guess* that it does, because I believe it just runs over ssh.use Net::SFTP; my $sftp = Net::SFTP->new("backup_host"); $sftp->put("local_file", "remote_file");
If you want to stick w/ the method you're talking about, I think your best option is to do what you suggested: encrypt the filename, then base64-encode it. Considering that you're going to be sending the entire contents of files over the network, adding a couple of bytes per filename isn't going to be the deciding factor in terms of efficiency. :)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re-3: Encrypting a Filename
by John M. Dlugosz (Monsignor) on Jun 15, 2001 at 03:26 UTC | |
by marcink (Monk) on Jun 15, 2001 at 03:47 UTC | |
by John M. Dlugosz (Monsignor) on Jun 15, 2001 at 05:24 UTC |