# HG changeset patch # User Heiko Schlittermann (CTQ) # Date 1312276980 -7200 # Node ID 15bc9b9d55e8533eab46491b5b2fbca86872c676 # Parent 2e00ff442e156fb4ae1023e994f3703ba422aae2 new: aes-128-cbc instead of blowfish (faster) diff -r 2e00ff442e15 -r 15bc9b9d55e8 bin/ftbackup --- a/bin/ftbackup Tue Aug 02 11:22:31 2011 +0200 +++ b/bin/ftbackup Tue Aug 02 11:23:00 2011 +0200 @@ -308,7 +308,7 @@ while read; do test "\$REPLY" = "#-- START" \\ - && exec openssl enc -d -blowfish "\$@" + && exec openssl enc -d -aes-128-cbc "\$@" done <\$input exit #-- START @@ -319,7 +319,7 @@ exec "dump -$dev->{level} -L $label -f- -u -z$cf{COMPRESSION_LEVEL} -E $dev->{exclude}{inodes} $dev->{dump}" - . "| openssl enc -pass env:key -salt -blowfish"; + . "| openssl enc -pass env:key -salt -aes-128-cbc"; die "Can't exec dumper\n"; }; @@ -820,7 +820,7 @@ =item KEY -The encryption key to use. (We use symmetric blowfish encryption currently.) +The encryption key to use. (We use symmetric aes-128-cbc encryption currently.) =item FTP_HOST