Skip to content

Commit

Permalink
Set default Argon2 transform rounds to 10
Browse files Browse the repository at this point in the history
* Fixes #2806
  • Loading branch information
droidmonkey committed May 31, 2019
1 parent a747886 commit c645e2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crypto/kdf/Argon2Kdf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Argon2Kdf::Argon2Kdf()
, m_memory(1 << 16)
, m_parallelism(static_cast<quint32>(QThread::idealThreadCount()))
{
m_rounds = 1;
m_rounds = 10;
}

quint32 Argon2Kdf::version() const
Expand Down

0 comments on commit c645e2e

Please sign in to comment.