mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Save AES-KDF round parameter as quint64
This commit is contained in:
parent
6df54cfe8d
commit
337a21f6d6
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ QVariantMap AesKdf::writeParameters()
|
||||||
// always write old KDBX3 AES-KDF UUID for compatibility with other applications
|
// always write old KDBX3 AES-KDF UUID for compatibility with other applications
|
||||||
p.insert(KeePass2::KDFPARAM_UUID, KeePass2::KDF_AES_KDBX3.toByteArray());
|
p.insert(KeePass2::KDFPARAM_UUID, KeePass2::KDF_AES_KDBX3.toByteArray());
|
||||||
|
|
||||||
p.insert(KeePass2::KDFPARAM_AES_ROUNDS, rounds());
|
p.insert(KeePass2::KDFPARAM_AES_ROUNDS, static_cast<quint64>(rounds()));
|
||||||
p.insert(KeePass2::KDFPARAM_AES_SEED, seed());
|
p.insert(KeePass2::KDFPARAM_AES_SEED, seed());
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue