mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 14:07:38 +03:00
Formatting and consistency fixes
This commit is contained in:
parent
4592de8fb6
commit
61c4fe8992
6 changed files with 29 additions and 43 deletions
|
@ -322,12 +322,9 @@ void Kdbx3Reader::setTransformSeed(const QByteArray& data)
|
|||
}
|
||||
|
||||
auto kdf = m_db->kdf();
|
||||
if (!kdf) {
|
||||
kdf = QSharedPointer<AesKdf>::create();
|
||||
m_db->setKdf(kdf);
|
||||
if (!kdf.isNull()) {
|
||||
kdf->setSeed(data);
|
||||
}
|
||||
|
||||
kdf->setSeed(data);
|
||||
}
|
||||
|
||||
void Kdbx3Reader::setTransformRounds(const QByteArray& data)
|
||||
|
@ -339,12 +336,9 @@ void Kdbx3Reader::setTransformRounds(const QByteArray& data)
|
|||
|
||||
auto rounds = Endian::bytesToSizedInt<quint64>(data, KeePass2::BYTEORDER);
|
||||
auto kdf = m_db->kdf();
|
||||
if (!kdf) {
|
||||
kdf = QSharedPointer<AesKdf>::create();
|
||||
m_db->setKdf(kdf);
|
||||
if (!kdf.isNull()) {
|
||||
kdf->setRounds(rounds);
|
||||
}
|
||||
|
||||
kdf->setRounds(rounds);
|
||||
}
|
||||
|
||||
void Kdbx3Reader::setEncryptionIV(const QByteArray& data)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue