mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
challenge: Propagate failed challenge to caller
* If a removed Yubikey is to blame, re-inserting the Yubikey won't resolve the issue. Hot plug isn't supported at this point. * The caller should detect the error and cancel the database write. Signed-off-by: Kyle Manna <kyle@kylemanna.com>
This commit is contained in:
parent
ba8fd25604
commit
faa055010f
6 changed files with 26 additions and 10 deletions
|
@ -176,9 +176,9 @@ QByteArray Database::transformedMasterKey() const
|
|||
return m_data.transformedMasterKey;
|
||||
}
|
||||
|
||||
QByteArray Database::challengeMasterSeed(const QByteArray& masterSeed) const
|
||||
bool Database::challengeMasterSeed(const QByteArray& masterSeed, QByteArray& result) const
|
||||
{
|
||||
return m_data.key.challenge(masterSeed);
|
||||
return m_data.key.challenge(masterSeed, result);
|
||||
}
|
||||
|
||||
void Database::setCipher(const Uuid& cipher)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue