Increase default number of transform rounds to 100000.

Even low-end smartphone should be able to handle that.
This commit is contained in:
Felix Geyer 2014-04-26 18:34:33 +02:00
parent c917096d3c
commit e263c475c9

View File

@ -37,7 +37,7 @@ Database::Database()
{
m_data.cipher = KeePass2::CIPHER_AES;
m_data.compressionAlgo = CompressionGZip;
m_data.transformRounds = 50000;
m_data.transformRounds = 100000;
m_data.hasKey = false;
setRootGroup(new Group());