Merge pull request #61 from keros/change_default_private_key_encryption

changed default encrpytion algorithmus for keyfiles from des3 to aes256
This commit is contained in:
Eric Crist 2015-09-02 18:33:59 -05:00
commit 8b42eead58

View File

@ -871,7 +871,7 @@ See help output for usage details."
# parse command options
shift 2
local crypto="-des3"
local crypto="-aes256"
while [ -n "$1" ]; do
case "$1" in
nopass) crypto= ;;