mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 21:47:38 +03:00
Fix composite keys in KeePass1Reader.
This commit is contained in:
parent
7fd8154ea8
commit
c02b5abc6e
1 changed files with 1 additions and 1 deletions
|
@ -842,7 +842,7 @@ QByteArray KeePass1Key::rawKey() const
|
|||
}
|
||||
else {
|
||||
CryptoHash keyHash(CryptoHash::Sha256);
|
||||
keyHash.addData(m_password);
|
||||
keyHash.addData(CryptoHash::hash(m_password, CryptoHash::Sha256));
|
||||
keyHash.addData(m_keyfileData);
|
||||
return keyHash.result();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue