]> git.proxmox.com Git - pve-common.git/commitdiff
PVE/AbstractMigrate: remove hardcoded blowfish cipher
authorStefan Priebe <s.priebe@profihost.ag>
Wed, 31 Oct 2012 11:16:57 +0000 (12:16 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Wed, 31 Oct 2012 12:54:33 +0000 (13:54 +0100)
Signed-off-by: Stefan Priebe <s.priebe@profihost.ag>
data/PVE/AbstractMigrate.pm

index ccfcfb69b2d716d2edc911b0f2b20c8ff59d99b0..01d0a50cfa70ce5b3ed36b600ff78ebbe81b7353 100644 (file)
@@ -104,8 +104,7 @@ my $eval_int = sub {
     };
 };
 
-# blowfish is a fast block cipher, much faster then 3des
-my @ssh_opts = ('-c', 'blowfish', '-o', 'BatchMode=yes');
+my @ssh_opts = ('-o', 'BatchMode=yes');
 my @ssh_cmd = ('/usr/bin/ssh', @ssh_opts);
 my @scp_cmd = ('/usr/bin/scp', @ssh_opts);
 my @rsync_opts = ('-aHAX', '--delete', '--numeric-ids');