From cf9e4731b8f2170e529e8b18d64f8f21883ecb85 Mon Sep 17 00:00:00 2001 From: keros Date: Wed, 13 May 2015 10:23:31 +0000 Subject: [PATCH] changed default encrpytion algorithmus for keyfiles from des3 to aes256 --- easyrsa3/easyrsa | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easyrsa3/easyrsa b/easyrsa3/easyrsa index a7d6345..3411d9a 100755 --- a/easyrsa3/easyrsa +++ b/easyrsa3/easyrsa @@ -861,7 +861,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= ;;