mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-26 08:15:32 -04:00
Increase default number of transform rounds to 100000.
Even low-end smartphone should be able to handle that.
This commit is contained in:
parent
c917096d3c
commit
e263c475c9
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ Database::Database()
|
||||||
{
|
{
|
||||||
m_data.cipher = KeePass2::CIPHER_AES;
|
m_data.cipher = KeePass2::CIPHER_AES;
|
||||||
m_data.compressionAlgo = CompressionGZip;
|
m_data.compressionAlgo = CompressionGZip;
|
||||||
m_data.transformRounds = 50000;
|
m_data.transformRounds = 100000;
|
||||||
m_data.hasKey = false;
|
m_data.hasKey = false;
|
||||||
|
|
||||||
setRootGroup(new Group());
|
setRootGroup(new Group());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue