aboutsummaryrefslogtreecommitdiff
path: root/src/keyring.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/keyring.cpp')
-rw-r--r--src/keyring.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/keyring.cpp b/src/keyring.cpp
index 8f49dfa..4e8eeff 100644
--- a/src/keyring.cpp
+++ b/src/keyring.cpp
@@ -91,15 +91,15 @@ int generate_key(QStringView name, const QByteArray &password)
}
// Key wrapping. The crypto_pwhash derives the key from password with the
- // specified parameters (3 iterations over 1 gigabyte of memory). This
+ // specified parameters (2 iterations over 2 gigabytes of memory). This
// operation is slow and should ideally be handled asynchronously without
// blocking the GUI thread.
quint8 wrap_key[crypto_aead_chacha20poly1305_KEYBYTES];
sodium_mlock(wrap_key, sizeof(wrap_key));
quint8 salt[crypto_pwhash_SALTBYTES];
randombytes_buf(salt, sizeof(salt));
- quint32 pwhash_opslimit = crypto_pwhash_OPSLIMIT_MODERATE;
- quint32 pwhash_memlimit = crypto_pwhash_MEMLIMIT_SENSITIVE;
+ quint32 pwhash_opslimit = 2u;
+ quint32 pwhash_memlimit = 2 * 1024 * 1024 * 1024u;
quint8 pwhash_alg = crypto_pwhash_ALG_DEFAULT;
if (crypto_pwhash(wrap_key, sizeof(wrap_key), password.constData(), password.size(), salt, pwhash_opslimit, pwhash_memlimit, pwhash_alg))
{