symkey: change default key size to 512 bits

This commit is contained in:
Mirek Kratochvil 2015-12-05 18:31:36 +01:00
parent bad79f05a0
commit 1d2197ca02

View file

@ -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, ',')) {