mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Save AES-KDF round parameter as quint64
This commit is contained in:
parent
6df54cfe8d
commit
337a21f6d6
@ -54,7 +54,7 @@ QVariantMap AesKdf::writeParameters()
|
||||
// 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_AES_ROUNDS, rounds());
|
||||
p.insert(KeePass2::KDFPARAM_AES_ROUNDS, static_cast<quint64>(rounds()));
|
||||
p.insert(KeePass2::KDFPARAM_AES_SEED, seed());
|
||||
return p;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user