new: aes-128-cbc instead of blowfish (faster)
authorHeiko Schlittermann (CTQ) <hs@schlittermann.de>
Tue, 02 Aug 2011 11:23:00 +0200
changeset 126 15bc9b9d55e8
parent 125 2e00ff442e15
child 127 ed5b87c249a8
new: aes-128-cbc instead of blowfish (faster)
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