From 1d2197ca02309324eeccb87979fa9ed210cb6ea0 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Sat, 5 Dec 2015 18:31:36 +0100 Subject: [PATCH] symkey: change default key size to 512 bits --- src/symkey.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/symkey.cpp b/src/symkey.cpp index 0d7d893..5e61108 100644 --- a/src/symkey.cpp +++ b/src/symkey.cpp @@ -39,7 +39,7 @@ bool symkey::create (const std::string&in, prng&rng) { //first, find cipher and hash names blocksize = 1024 * 1024; - uint keysize = 32; + uint keysize = 64; std::stringstream ss (in); std::string tok; while (getline (ss, tok, ',')) {