mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 21:47:38 +03:00
Use QSharedPointer instead of cloning YkChallengeResponseKey and make it a QObject to allow emitting signals
This commit is contained in:
parent
e93e4a9931
commit
093fe5c7ef
9 changed files with 78 additions and 66 deletions
|
@ -257,18 +257,16 @@ bool Database::verifyKey(const CompositeKey& key) const
|
|||
{
|
||||
Q_ASSERT(hasKey());
|
||||
|
||||
/* If the database has challenge response keys, then the the verification
|
||||
* key better as well */
|
||||
if (!m_data.challengeResponseKey.isEmpty()) {
|
||||
QByteArray result;
|
||||
|
||||
if (!key.challenge(m_data.masterSeed, result)) {
|
||||
/* Challenge failed, (YubiKey?) removed? */
|
||||
// challenge failed, (YubiKey?) removed?
|
||||
return false;
|
||||
}
|
||||
|
||||
if (m_data.challengeResponseKey != result) {
|
||||
/* Wrong response from challenged device(s) */
|
||||
// wrong response from challenged device(s)
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue